all repos — tnt-search @ 61c814071a06fa85f9f4d4fef2ecdb53276aa416

A search tool for TNTVillage's dump.

Dockerfile (view raw)

 1FROM tiangolo/meinheld-gunicorn-flask:python3.9-alpine3.13
 2
 3WORKDIR /app
 4
 5RUN pip install --upgrade pip
 6COPY requirements.txt .
 7RUN pip install -r requirements.txt
 8
 9COPY tntvillage-release-dump ./tntvillage-release-dump
10COPY templates ./templates
11COPY main.py ./main.py
12
13ENV APP_MODULE=main:app