Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Define function directory
ARG FUNCTION_DIR="/var/task"

FROM mcr.microsoft.com/playwright/python:v1.43.0-jammy AS build-image
FROM mcr.microsoft.com/playwright/python:v1.57.0-jammy AS build-image

# Install aws-lambda-cpp build dependencies
RUN apt-get update && \
Expand All @@ -26,7 +26,7 @@ RUN pip3 install -r lambda_requirements.txt --target ${FUNCTION_DIR}
# ------------------------------------------------------

# Multi-stage build: grab a fresh copy of the base image
FROM mcr.microsoft.com/playwright/python:v1.43.0-jammy
FROM mcr.microsoft.com/playwright/python:v1.57.0-jammy

# Include global arg in this stage of the build
ARG FUNCTION_DIR
Expand Down
Loading