1
0
镜像自地址 https://git.sr.ht/~cadence/NewLeaf 已同步 2025-07-03 01:42:04 +00:00

Delete extra directory in Dockerfile

这个提交包含在:
colgrave34 2024-07-12 19:22:51 -04:00 提交者 Cadence Ember
父节点 97b7661cc7
当前提交 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