Update Dockerfie so docker build wont complain anymore
This commit is contained in:
parent
c78ced85ca
commit
f78616a34d
@ -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"]
|
Loading…
Reference in New Issue
Block a user