File size: 182 Bytes
3e09be7
 
 
 
 
 
 
 
 
 
9de3044
f02839a
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM python:3.10.12-slim-bookworm

RUN python -m pip install pipenv

COPY Pipfile .
COPY Pipfile.lock .
COPY *.py .


RUN pipenv install --system --deploy 

CMD ["python", "app.py"]