XHS_Downloader/Dockerfile
2024-08-07 21:17:58 +08:00

17 lines
330 B
Docker

FROM python:3.12.4-slim
LABEL name="XHS-Downloader" version="2.2 Beta" authors="JoeanAmier"
COPY locale /locale
COPY source /source
COPY static /static
COPY LICENSE /LICENSE
COPY main.py /main.py
COPY requirements.txt /requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 8000
CMD ["python", "main.py"]