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-02-12 20:03:20 +00:00

5 lines
189 B
Docker

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