FROM python:alpine
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY main.py .
COPY templates templates
CMD ["python", "main.py"]