Files
Web-NibblePoker/Dockerfile
Herwin Bozet a930331d6c Removed old PHP code, migrated to Python and Flask
Update .dockerignore, .env, and 503 more files...
2024-10-20 16:20:37 +02:00

11 lines
160 B
Docker

FROM python:alpine
WORKDIR /www
ADD ./ ./
RUN apk add --no-cache cargo
RUN pip install -r requirements.txt
RUN pip install gunicorn
ENTRYPOINT ["top", "-b"]