11 lines
219 B
Docker
11 lines
219 B
Docker
|
FROM python:3.11
|
||
|
|
||
|
COPY app/ /app/
|
||
|
COPY migrations/ /migrations/
|
||
|
COPY paper /paper/
|
||
|
|
||
|
COPY config.py config.py
|
||
|
COPY make_celery.py make_celery.py
|
||
|
COPY requirements.txt requirements.txt
|
||
|
|
||
|
RUN pip install -r requirements.txt
|