meta-kitties/Dockerfile

12 lines
184 B
Docker
Raw Normal View History

FROM python:3
WORKDIR /usr/src/app
COPY requirements.txt ./
COPY modules/ ./modules
RUN pip install --no-cache-dir -r requirements.txt
2024-12-30 22:34:23 +01:00
COPY main.py ./
CMD [ "python", "./main.py"]