1
0
mirror of https://git.sr.ht/~cadence/NewLeaf synced 2024-09-21 02:57:30 +00:00
NewLeaf/Dockerfile

14 lines
167 B
Docker
Raw Normal View History

2024-07-12 23:22:51 +00:00
FROM python:3.12-alpine
WORKDIR /workdir
2024-07-12 23:22:51 +00:00
COPY ./requirements.txt ./requirements.txt
RUN pip install -r requirements.txt
2024-07-12 23:22:51 +00:00
COPY . .
EXPOSE 3000
2024-07-12 23:22:51 +00:00
CMD python index.py