aed9eb9 20094de aed9eb9 46a0d74 2279df1 3027af9 2cb2965
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM python:latest WORKDIR /app COPY . . RUN pip install --no-cache-dir -r requirements.txt RUN mkdir /.cache && chmod 777 /.cache RUN mkdir /app/mayo && chmod 777 /app/mayo CMD ["python3", "app.py"]