blob: 0a9a6fdc9eb6532e973aa3af196e9f6554fdfd64 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
FROM python:latest
WORKDIR /app
COPY requirements.txt .
RUN pip install pip -U
RUN pip install -r requirements.txt
COPY . .
RUN alembic upgrade head
CMD ["python", "main.py"]
|