FROM python:3.6.9
RUN apt update && apt install -y gcc \
    g++ build-essential\
    libffi-dev openssl \
    libxml2
RUN apt install -y mdbtools
RUN pip install --upgrade pip
COPY requirements.txt /app/requirements.txt
RUN pip install -r /app/requirements.txt
RUN pip install meza
COPY . /app
WORKDIR /app
CMD [ "python","app.py" ]