Files
asimonson1125.github.io/Dockerfile
2026-02-12 00:01:40 -06:00

11 lines
222 B
Docker
Executable File

FROM python:3.10-bullseye
LABEL maintainer="Andrew Simonson <asimonson1125@gmail.com>"
WORKDIR /app
COPY src/ .
RUN pip install --no-cache-dir -r requirements.txt
CMD [ "gunicorn", "--bind", "0.0.0.0:8080", "app:app"]