From f78616a34de53d378a921924cd30990e6806ccfc Mon Sep 17 00:00:00 2001 From: Emily Doherty Date: Sat, 30 Nov 2024 04:43:12 -0800 Subject: [PATCH] Update Dockerfie so docker build wont complain anymore --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8b45ff8..71815ee 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,9 @@ -FROM python:3.11-bookworm as base +FROM python:3.12-bookworm AS base WORKDIR /app COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt -FROM base as app +FROM base AS app COPY . . CMD ["python", "main.py"] \ No newline at end of file