system-pri/backend/Dockerfile

17 lines
221 B
Docker
Raw Normal View History

2022-05-23 14:23:22 +02:00
FROM python:3.8-slim-buster
ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONUNBUFFERED 1
WORKDIR /app
RUN apt update && \
pip install --upgrade pip
2022-05-23 14:23:22 +02:00
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .