Files
anki_convert/Dockerfile

10 lines
210 B
Docker
Executable File

FROM python:3.12.2-alpine
COPY requirements.txt /home
RUN pip install -r /home/requirements.txt
COPY src webserver
WORKDIR /webserver
ENV FLASK_DEGUB=false
ENTRYPOINT [ "python3", "-u", "app.py" ]
EXPOSE 5000