all repos — artbound-python @ 3d6c695d27ba8a782bd99f2410cea108f6bc3941

A client-server reimplementation of the administration panel for ArtBound.

Dockerfile (view raw)

1FROM python:3-alpine
2
3WORKDIR /app
4COPY . .
5RUN pip install --upgrade pip
6RUN pip install -r requirements.txt
7
8CMD ["waitress-serve", "--host", "0.0.0.0", "--port", "1111", "artbound_python:app"]