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