mirror of
https://git.sr.ht/~cadence/NewLeaf
synced 2025-11-19 04:36:30 +00:00
13 lines
167 B
Docker
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
|