FROM python:3.9
WORKDIR /python
COPY app.pyc .
EXPOSE 8080
RUN  pip3 install --no-cache-dir flask
CMD ["python", "app.pyc"]