aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorTolmachev Igor <me@igorek.dev>2026-03-22 19:56:47 +0300
committerTolmachev Igor <me@igorek.dev>2026-03-22 20:19:27 +0300
commit536d022e8a55f6e53f01dfb7e0fae2ef24385aad (patch)
tree721d7195db7fc12c725b27301f77e345df64d1b4 /Dockerfile
downloadvpn_manager_bot-536d022e8a55f6e53f01dfb7e0fae2ef24385aad.tar.gz
vpn_manager_bot-536d022e8a55f6e53f01dfb7e0fae2ef24385aad.zip
Init project
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"]