all repos — tnt-search @ 37dc1e94092a8d61633911f1f197cd695d4c2459

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