FROM python:3.8.3-slim-buster ARG PORT ENV APP_HOME /app WORKDIR $APP_HOME ENV PYTHONUNBUFFERED TRUE # Copy local code to the container image. COPY . . # Install production dependencies. RUN pip install gunicorn functions-framework RUN pip install -r requirements.txt