##// END OF EJS Templates
Fix saving data position
Fix saving data position

File last commit:

r378:367f9b33679b
r392:16208270cf50
Show More
Dockerfile
9 lines | 255 B | text/x-dockerfile-config | DockerLexer
FROM python:3.8-slim
WORKDIR /app
#ENV FLASK_APP=app.py
#ENV FLASK_RUN_HOST=0.0.0.0
#RUN apk add --no-cache gcc musl-dev linux-headers
COPY requirements.txt requirements.txt
RUN pip install -r requirements.txt
EXPOSE 5000
COPY . .
CMD ["python", "app.py"]