FROM python:3.9-slim
#COPY . .
COPY . /app
WORKDIR /app
RUN pip install pandas
CMD ["python", "app.py"]