mirror of
https://github.com/evgen-app/evg-app-back.git
synced 2024-11-22 08:46:34 +03:00
14 lines
163 B
Docker
14 lines
163 B
Docker
|
FROM python:3.8-slim-buster
|
||
|
ENV PYTHONUNBUFFERED 1
|
||
|
|
||
|
|
||
|
RUN mkdir /app
|
||
|
|
||
|
WORKDIR /app
|
||
|
|
||
|
COPY requirements.txt /app/
|
||
|
RUN pip3 install -r requirements.txt
|
||
|
|
||
|
COPY . /app/
|
||
|
|