all repos — artbound-python @ d179901a594eda7201aa5575d250e91c282fe5c1

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