This repository has been archived on 2026-04-06. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
LiveCartaMeta/Dockerfile
Egor Svitin 7a6d84dc20 updates
2023-02-21 13:29:26 +03:00

15 lines
199 B
Docker

FROM python:3.12-rc-slim
WORKDIR /app
RUN pip install pymongo \
dynaconf \
pydantic \
pymysql \
mongoengine \
dict_hash \
requests
COPY ./ ./
CMD ["python", "update.py"]