Update Dockerfile
There is always money in the banana stand
This commit is contained in:
parent
1a1973f0dc
commit
fce98c6417
1 changed files with 6 additions and 7 deletions
13
Dockerfile
13
Dockerfile
|
|
@ -1,6 +1,6 @@
|
|||
FROM python:3
|
||||
FROM ubuntu:18.04
|
||||
|
||||
LABEL base_image="python:3"
|
||||
LABEL base_image="ubuntu:18.04"
|
||||
LABEL version="1.0.0"
|
||||
LABEL software="bioSimAPI"
|
||||
LABEL software.version="1.0.0"
|
||||
|
|
@ -15,14 +15,13 @@ LABEL maintainer="Chris Myers <chris.myers@colorado.edu>"
|
|||
# Install requirements
|
||||
RUN apt-get update --fix-missing \
|
||||
&& DEBIAN_FRONTEND=noninteractive \
|
||||
&& apt-get install -y maven
|
||||
&& apt-get install -y maven \
|
||||
&& apt-get install python3.7 -y \
|
||||
&& apt-get install python3-pip -y \
|
||||
&& apt install openjdk-8-jdk -y
|
||||
|
||||
COPY . .
|
||||
|
||||
RUN apt list --installed
|
||||
|
||||
RUN apt install openjdk-8-jdk -y
|
||||
|
||||
# Build iBioSim
|
||||
WORKDIR /iBioSim
|
||||
RUN mvn package -Dmaven.javadoc.skip=true
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue