Test / Dockerfile
hashimotoa961
fix for flask
e98a018
raw
history blame
176 Bytes
FROM python:3.9
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
COPY ./app.py /code/app.py
RUN pip install -r requirements.txt
COPY . .
CMD ["python", "app.py"]