mirror of https://git.sr.ht/~cadence/NewLeaf
Delete extra directory in Dockerfile
This commit is contained in:
parent
97b7661cc7
commit
fde9f3272a
|
@ -1,12 +1,12 @@
|
||||||
FROM python:3.9-buster
|
FROM python:3.12-alpine
|
||||||
|
|
||||||
WORKDIR /workdir
|
WORKDIR /workdir
|
||||||
|
|
||||||
COPY ./requirements.txt /workdir/requirements.txt
|
COPY ./requirements.txt ./requirements.txt
|
||||||
|
|
||||||
RUN pip install -r requirements.txt
|
RUN pip install -r requirements.txt
|
||||||
|
|
||||||
COPY . /workdir
|
COPY . .
|
||||||
|
|
||||||
EXPOSE 3000
|
EXPOSE 3000
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue