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