meta-kitties/Dockerfile
2024-12-30 22:34:23 +01:00

12 lines
184 B
Docker

FROM python:3
WORKDIR /usr/src/app
COPY requirements.txt ./
COPY modules/ ./modules
RUN pip install --no-cache-dir -r requirements.txt
COPY main.py ./
CMD [ "python", "./main.py"]