aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile11
1 files changed, 11 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..0a9a6fd
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,11 @@
1FROM python:latest
2
3WORKDIR /app
4COPY requirements.txt .
5RUN pip install pip -U
6RUN pip install -r requirements.txt
7
8COPY . .
9
10RUN alembic upgrade head
11CMD ["python", "main.py"]