aed9eb9
20094de
aed9eb9
46a0d74
2279df1
3027af9
aed9eb9
2cb2965 | | 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"] |