thesis / Dockerfile-Base
LennardZuendorf's picture
fix: cleanup build config again, reverting reverted changes
69b34c4 unverified
raw
history blame
No virus
497 Bytes
# Dockerfile to create base image with all needed dependencies. for the quick dockerfile build of the webapp
# because all dependencies are already installed, the next webapp build using this base image is much quicker
# using newest python as a base image
FROM thesis-base:0.1.1
# install dependencies based on requirements
COPY requirements.txt ./
RUN pip install --no-cache-dir --upgrade -r requirements.txt
# build and run commands
## docker build -t thesis-base:1.0.1 -f Dockerfile-Base .