1
0
Fork 0
mirror of https://git.sr.ht/~cadence/NewLeaf synced 2025-11-19 04:36:30 +00:00
NewLeaf/Dockerfile
2024-07-14 23:09:55 +12:00

13 lines
167 B
Docker

FROM python:3.12-alpine
WORKDIR /workdir
COPY ./requirements.txt ./requirements.txt
RUN pip install -r requirements.txt
COPY . .
EXPOSE 3000
CMD python index.py