all repos — artbound-python @ 4ab8582c6bb9b125427e4b5bc809a23519976fa6

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"]