all repos — artbound-python @ 28ba21f6c7910ba167040c393f92b6166b3b9ee3

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