From b27f432c13c55ccb86d0ec080fd5463f0cd4056c Mon Sep 17 00:00:00 2001 From: Thomas Pierce Date: Fri, 23 Aug 2024 16:48:02 -0700 Subject: [PATCH] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e8aa35db1..a0b9306c8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ # The packages are installed in the `/autoinstrumentation` directory. This is required as when instrumenting the pod by CWOperator, # one init container will be created to copy all the content in `/autoinstrumentation` directory to app's container. Then # update the `PYTHONPATH` environment variable accordingly. Then in the second stage, copy the directory to `/autoinstrumentation`. -FROM python:3.11 AS build +FROM public.ecr.aws/docker/library/python:3.11 AS build WORKDIR /operator-build