mirror of
https://github.com/jessebot/tiny_personal_website.git
synced 2025-10-01 01:48:43 +00:00
8 lines
171 B
Docker
8 lines
171 B
Docker
FROM python:3.10.7-slim-buster
|
|
|
|
COPY requirements.txt requirements.txt
|
|
RUN pip3 install -r requirements.txt
|
|
|
|
COPY . .
|
|
|
|
CMD ["gunicorn" , "-b", "0.0.0.0:8080", "app:app"]
|