Files
agent-home-security/Dockerfile
2024-05-05 01:16:45 +03:00

12 lines
251 B
Docker

FROM python:3.11-slim-buster
WORKDIR /app
ADD . /app
RUN apt-get update && apt-get install ffmpeg libsm6 libxext6 -y
RUN pip install --no-cache-dir -r requirements.txt
#EXPOSE 9999
WORKDIR /app/src
RUN mkdir -p tmp/archive
CMD ["python", "main.py"]