digiwild / Dockerfile
katospiegel's picture
Initial protype
eac929d
raw
history blame
735 Bytes
From ubuntu:latest
RUN apt update
RUN apt install python3 python3-pip -y
##################################################
# Ubuntu setup
##################################################
RUN apt-get update \
&& apt-get install -y wget \
&& rm -rf /var/lib/apt/lists/*
RUN apt-get update && apt-get -y upgrade \
&& apt-get install -y --no-install-recommends \
unzip \
nano \
git \
g++ \
gcc \
htop \
zip \
ca-certificates \
&& rm -rf /var/lib/apt/lists/*
##################################################
# ODTP setup
##################################################
RUN mkdir /app
COPY . /digiwild
RUN pip install -r /digiwild/requirements.txt
WORKDIR /digiwild
ENTRYPOINT bash