mirror of
https://git.sr.ht/~cadence/NewLeaf
synced 2024-11-14 12:07:30 +00:00
13 lines
179 B
Docker
13 lines
179 B
Docker
|
FROM python:3.9-buster
|
||
|
|
||
|
WORKDIR /workdir
|
||
|
|
||
|
COPY ./requirements.txt /workdir/requirements.txt
|
||
|
|
||
|
RUN pip install -r requirements.txt
|
||
|
|
||
|
COPY . /workdir
|
||
|
|
||
|
EXPOSE 3000
|
||
|
|
||
|
CMD python index.py
|