Update Dockerfie so docker build wont complain anymore

This commit is contained in:
Emily Doherty 2024-11-30 04:43:12 -08:00
parent c78ced85ca
commit f78616a34d

View File

@ -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"]