all repos — tnt-search @ d4b4aaf72d84f02c001002a7f56119ae060dc520

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