Add back in slim bullseye

This commit is contained in:
Khalim Conn-Kowlessar 2023-08-24 16:56:51 +01:00
parent 45a13c1503
commit 966ea393d7

View file

@ -1,5 +1,5 @@
# Pull base image
FROM arm64v8/python:3.10.12-bullseye as build-image
FROM arm64v8/python:3.10.12-slim-bullseye as build-image
# Set environment variables
ENV PYTHONDONTWRITEBYTECODE 1
@ -24,7 +24,7 @@ RUN pip install -r backend/requirements/base.txt && rm -rf /root/.cache
RUN pip install awslambdaric
# Second stage: "runtime-image"
FROM arm64v8/python:3.10.12-bullseye
FROM arm64v8/python:3.10.12-slim-bullseye
# Set work directory to the root of your project
WORKDIR /var/task/Model