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
2024-02-19 11:17:03 +00:00

5 lines
182 B
Docker

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