mirror of
https://github.com/JoeanAmier/XHS-Downloader.git
synced 2025-12-26 04:48:05 +08:00
17 lines
330 B
Docker
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"]
|