mirror of
https://git.sr.ht/~cadence/NewLeaf
synced 2024-11-21 07:07:29 +00:00
14 lines
167 B
Docker
14 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
|