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