mirror of
https://git.sr.ht/~cadence/NewLeaf
synced 2025-11-19 04:36:30 +00:00
Delete extra directory in Dockerfile
This commit is contained in:
parent
97b7661cc7
commit
fde9f3272a
1 changed files with 4 additions and 4 deletions
|
|
@ -1,13 +1,13 @@
|
|||
FROM python:3.9-buster
|
||||
FROM python:3.12-alpine
|
||||
|
||||
WORKDIR /workdir
|
||||
|
||||
COPY ./requirements.txt /workdir/requirements.txt
|
||||
COPY ./requirements.txt ./requirements.txt
|
||||
|
||||
RUN pip install -r requirements.txt
|
||||
|
||||
COPY . /workdir
|
||||
COPY . .
|
||||
|
||||
EXPOSE 3000
|
||||
|
||||
CMD python index.py
|
||||
CMD python index.py
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue