all repos — tnt-search @ 7fef7f1a7a9eacce07be54ba3af0e2415377a39b

A search tool for TNTVillage's dump.

Dockerfile (view raw)

 1FROM python:3-alpine
 2
 3COPY main.py .
 4COPY requirements.txt .
 5COPY tntvillage-release-dump ./tntvillage-release-dump
 6COPY templates ./templates
 7
 8RUN pip install --upgrade pip
 9RUN pip install -r requirements.txt
10
11CMD ["waitress-serve", "--host", "0.0.0.0", "--port", "5000", "main:app"]