migration removed

This commit is contained in:
2022-07-21 19:01:28 +03:00
parent 379fb6fb68
commit a627bfe043
29 changed files with 1 additions and 4829 deletions

View File

@@ -1,15 +0,0 @@
FROM python:3.8
EXPOSE 8080
RUN /usr/local/bin/python -m pip install --upgrade pip
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN set -ex && pip install -r requirements.txt
COPY . .
CMD ["python", "server.py"]