diff --git a/backend/docker/lambda.Dockerfile b/backend/docker/lambda.Dockerfile index db9bad40..47d00c9d 100644 --- a/backend/docker/lambda.Dockerfile +++ b/backend/docker/lambda.Dockerfile @@ -3,7 +3,7 @@ # https://python-mip.readthedocs.io/en/latest/install.html # Pull base image -FROM arm64v8/python:3.10.12-slim-buster as build-image +FROM python:3.10.12-slim-buster as build-image # Set environment variables ENV PYTHONDONTWRITEBYTECODE 1 @@ -24,7 +24,7 @@ RUN pip install --upgrade pip \ RUN pip install awslambdaric # Second stage: "runtime-image" -FROM arm64v8/python:3.10.12-slim-buster +FROM python:3.10.12-slim-buster # Set work directory to the root of your project WORKDIR /var/task/Model