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
|
WORKDIR /app
|
||||||
COPY requirements.txt .
|
COPY requirements.txt .
|
||||||
RUN pip install --no-cache-dir -r requirements.txt
|
RUN pip install --no-cache-dir -r requirements.txt
|
||||||
|
|
||||||
FROM base as app
|
FROM base AS app
|
||||||
COPY . .
|
COPY . .
|
||||||
|
|
||||||
CMD ["python", "main.py"]
|
CMD ["python", "main.py"]
|
Loading…
Reference in New Issue
Block a user