Add dockerfile

This commit is contained in:
Antonio J. Delgado 2024-01-29 15:08:33 +02:00
parent 80480620fa
commit 9f5d53513f

12
Dockerfile Normal file
View file

@ -0,0 +1,12 @@
FROM python:3
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
RUN pip install --no-cache-dir /usr/src/app/
COPY . .
# CMD [ "python", "./your-daemon-or-script.py" ]
CMD [ "sh" ]