kenken999's picture
fda
0f43f8a
raw
history blame
146 Bytes
FROM python:3.9-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
CMD ["lambda_function.lambda_handler"]