mirror of
https://github.com/more-tech4-magnum-opus/backend.git
synced 2024-11-10 22:46:34 +03:00
9 lines
189 B
Docker
9 lines
189 B
Docker
# syntax=docker/dockerfile:1
|
|
FROM python:3
|
|
ENV PYTHONDONTWRITEBYTECODE=1
|
|
ENV PYTHONUNBUFFERED=1
|
|
WORKDIR /code
|
|
COPY requirements/* /code/
|
|
RUN pip install -r production.txt
|
|
COPY app/* /code/
|