This repository has been archived on 2025-12-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
db-manager/Dockerfile
2023-05-08 19:55:09 +01:00

6 lines
204 B
Docker

FROM python:3.11-alpine
COPY ./requirements.txt /app/requirements.txt
RUN [ "pip", "install", "-r", "/app/requirements.txt" ]
COPY ./src /app/src
COPY ./data /app/data
CMD [ "python", "/app/src/main.py" ]