all repos — tnt-search @ e4a7499891618963e068e07e6aadf42a6c9d3dfc

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"]