carch-web-api/Dockerfile

12 lines
308 B
Docker
Raw Normal View History

2023-10-04 03:31:24 +00:00
FROM docker.io/python:3
RUN apt update
2023-11-18 00:43:02 +00:00
RUN apt install -y ffmpeg gifsicle
2023-10-06 19:56:56 +00:00
RUN mkdir /workspace
2023-10-06 20:34:38 +00:00
RUN mkdir /workspace/downloads
2023-10-06 19:56:56 +00:00
ADD requirements.txt /workspace/
WORKDIR /workspace
2023-10-04 03:31:24 +00:00
RUN pip3 install -r requirements.txt
2023-11-18 00:43:02 +00:00
RUN pip3 install --upgrade sentry-sdk,sphinx
ADD run.py /workspace
ADD .conf.json /workspace