mirror of https://git.sr.ht/~cadence/NewLeaf
Delete extra directory in Dockerfile
This commit is contained in:
parent
97b7661cc7
commit
fde9f3272a
|
@ -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…
Reference in New Issue