1
0
mirror of https://github.com/civsocit/olgram.git synced 2025-12-16 01:36:17 +00:00

Миграции

This commit is contained in:
mihalin
2021-07-11 12:53:33 +03:00
parent c5e0192d24
commit 415ec12b2f
22 changed files with 435 additions and 233 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM python:3.8-buster
COPY . /app
WORKDIR /app
RUN pip install --upgrade pip && \
pip install -r requirements.txt
ENTRYPOINT ["./docker-entrypoint.sh"]