FROM python:3.8.2-slim

COPY / /app/

RUN ls -la /app/*

WORKDIR /app/sample

RUN pip install --upgrade pip

RUN pip install Flask PyMySQL dialogflow BeautifulSoup4 googletrans json2html lxml

CMD [ "python", "main.py" ]