all repos — artbound-python @ fef95b2561b4374a13a10ba4179a4af1f37e1752

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

Dockerfile (view raw)

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