kangas-test / Dockerfile
CalebCometML's picture
Update Dockerfile
a3bed14
raw
history blame contribute delete
132 Bytes
FROM python:3.9
COPY requirements.txt /
RUN pip install -r /requirements.txt
WORKDIR /app
COPY ./ /app
CMD flask --app router run