rajkhanke's picture
Upload 6 files
084c216 verified
raw
history blame contribute delete
155 Bytes
FROM python:3.9
WORKDIR /app
ADD . /app
RUN python3 -m pip install --upgrade pip
RUN pip install -r requirements.txt
CMD [ "python","app.py" ]