Files
swmu_test_web/Dockerfile
2025-11-04 13:50:38 +01:00

17 lines
313 B
Docker

FROM python:3.9
LABEL maintainer="Martin Fencl <martin.fencl@eurowag.com>"
RUN apt-get update -y && \
apt-get dist-upgrade -y
WORKDIR /app
COPY requirements.txt ./
RUN pip3 install --upgrade pip && \
pip3 install -Ur requirements.txt -i https://pypi.princip.cz
COPY . .
CMD [ "python", "./app.py" ]