This repository has been archived on 2025-06-06. You can view files and clone it, but cannot push or open issues or pull requests.
Website/Dockerfile

13 lines
No EOL
177 B
Docker

FROM python:3.12-alpine
WORKDIR /
COPY ./requirements.txt ./
RUN pip3 install --no-cache-dir --upgrade -r ./requirements.txt
COPY . .
EXPOSE 8000
CMD ["python", "main.py"]