all repos — myprecious @ main

A lightweight web service to backup precious game saves.

Dockerfile (view raw)

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