correct docker image

This commit is contained in:
Khalim Conn-Kowlessar 2023-08-24 20:44:31 +01:00
parent d9b856a5ba
commit 2fd169873a

View file

@ -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