all repos — artbound-python @ main

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

Dockerfile (view raw)

 1FROM tecktron/python-waitress:slim
 2
 3WORKDIR /app
 4
 5RUN pip install --upgrade pip
 6COPY ./requirements.txt .
 7RUN pip install -r requirements.txt
 8
 9COPY ./artbound_python ./artbound_python
10ENV APP_MODULE=artbound_python:app