File size: 327 Bytes
029f978
 
a1743d7
029f978
 
a1743d7
029f978
 
 
a1743d7
029f978
 
a1743d7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Use the official lightweight Python image.
FROM python:3.9-slim

# Allow statements and log messages to immediately appear in the Knative logs
ENV PYTHONUNBUFFERED True

# Copy local code to the container image.
WORKDIR /app
COPY . /app

# Install production dependencies.
RUN pip install --no-cache-dir -r requirements.txt