1
0
mirror of https://git.sr.ht/~cadence/NewLeaf synced 2024-10-17 22:57:29 +00:00

Delete extra directory in Dockerfile

This commit is contained in:
colgrave34 2024-07-12 19:22:51 -04:00 committed by Cadence Ember
parent 97b7661cc7
commit fde9f3272a

View File

@ -1,13 +1,13 @@
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
CMD python index.py CMD python index.py