all repos — tnt-search @ ab5a058087dbeccfc9b5041c5140bc9347b65fee

A search tool for TNTVillage's dump.

Dockerfile (view raw)

1FROM python:3-alpine
2
3COPY . .
4RUN pip install --upgrade pip
5RUN pip install -r requirements.txt
6CMD ["waitress-serve", "--host", "127.0.0.1", "--port", "5000", "main:app"]