all repos — tnt-search @ aedc40fb94b5898bfcc79d7f5f82ce219b1f1215

A search tool for TNTVillage's dump.

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 tntvillage-release-dump ./tntvillage-release-dump
10COPY templates ./templates
11COPY main.py ./main.py
12
13ENV APP_MODULE=main:app