Files
cameraWebsite/website/dockerfile
T
2026-04-20 08:26:37 +02:00

13 lines
267 B
Docker

# syntax=docker/dockerfile:1
FROM python:3.10
COPY app/ .
#COPY requirements.txt requirements.txt
#RUN apt-get update && apt-get install ffmpeg -y
RUN pip3 install -r requirements.txt
CMD ["python", "app.py"]
#CMD ["gunicorn" , "-b", "0.0.0.0:8000" , "app:app"]