2024-10-08 19:49:44 +02:00
|
|
|
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 ./
|
2024-10-08 19:49:44 +02:00
|
|
|
|
|
|
|
CMD [ "python", "./main.py"]
|