fortune-as-a-service/Dockerfile
Nyx 6436bbf831 dockerize 🚀🚀🚀🚀🚀🚀🚀🚀🚀🚀🚀🚀🚀
2025-04-06 00:11:31 -05:00

8 lines
201 B
Docker

FROM archlinux:latest
WORKDIR /site
COPY . .
RUN pacman -Sy --noconfirm python python-pip
RUN pip install --break-system-packages -r requirements.txt
CMD ["waitress-serve", "--port=8000", "app.app"]