Student-s_AI / Dockerfile
Shirpi's picture
Create Dockerfile
94a0f6d verified
Raw
History Blame Contribute Delete
177 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 . .
CMD ["python", "app.py"]