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