From 7ae924a64bb9eb29d3c0fd820a3fecda22acaae5 Mon Sep 17 00:00:00 2001 From: root Date: Tue, 27 Aug 2024 09:55:28 +0000 Subject: [PATCH] first-commit --- dockerfile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 dockerfile diff --git a/dockerfile b/dockerfile new file mode 100644 index 0000000..b80a12e --- /dev/null +++ b/dockerfile @@ -0,0 +1,11 @@ +FROM python:3.8-alpine + +COPY ./requirements.txt /app/requirements.txt + +WORKDIR /app + +RUN pip install -r requirements.txt + +COPY . /app + +CMD ["python", "view.py"]