2024-01-31 19:37:01 +10:00
|
|
|
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
|
|
|
|
|
2024-02-01 18:08:16 +10:00
|
|
|
RUN mkdir /sessions
|
|
|
|
|
2024-01-31 19:37:01 +10:00
|
|
|
RUN pip install -r requirements.txt
|