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

13 lines
218 B
Docker

FROM python:3.12-slim
WORKDIR /app
RUN pip install pymongo==4.16.0 \
dynaconf==3.2.12 \
pydantic==2.15.5 \
pymysql==1.1.2 \
mongoengine==0.29.1 \
dict_hash==1.3.7 \
requests==2.32.5
COPY . .