Fancy-yousa's picture
Upload 18 files
94e0fc9 verified
raw
history blame contribute delete
194 Bytes
FROM python:3.9
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . /code
CMD ["python", "Webapp/app.py"]