lyreai / Dockerfile
Araeynn's picture
Update Dockerfile
8728c51 verified
raw
history blame
182 Bytes
FROM python:3.9
WORKDIR /code
COPY ./requirements.txt --no-cache-dir /code/requirements.txt
RUN pip install --upgrade -r /code/requirements.txt
COPY . .
CMD ["python", "app.py"]