mirror of
https://github.com/asimonson1125/asimonson1125.github.io.git
synced 2026-02-25 05:09:49 -06:00
11 lines
222 B
Docker
Executable File
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"]
|