FabricScan / Dockerfile
thejagstudio's picture
Create Dockerfile
ca47374 verified
raw
history blame
246 Bytes
FROM python:3.9
WORKDIR /code
RUN apt-get update && apt-get install ffmpeg libsm6 libxext6 -y
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . .
CMD ["python", "app.py"]