correct docker image

This commit is contained in:
Khalim Conn-Kowlessar 2023-08-24 20:45:10 +01:00
parent 2fd169873a
commit d6c29cc516

View file

@ -1,7 +1,3 @@
# Some additional work is required to get mip to run on arm64 architecture.
# This is because the mip library relies on the CBC solver, which is not available for arm64.
# https://python-mip.readthedocs.io/en/latest/install.html
# Pull base image
FROM python:3.10.12-slim-buster as build-image
@ -10,17 +6,21 @@ ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONUNBUFFERED 1
# Set work directory to the root of your project
WORKDIR /var/task/Model
WORKDIR var/task/Model
# Install system dependencies
# RUN apt-get update && apt-get install -y netcat-openbsd
RUN #apt-get update && apt-get install -y netcat-openbsd
# Install python dependencies
COPY ./backend/requirements/base.txt ./backend/requirements/base.txt
RUN pip install --upgrade pip \
&& pip install -r backend/requirements/base.txt && rm -rf /root/.cache
RUN pip install --upgrade pip
# Install and clean up temp caches
RUN pip install -r backend/requirements/base.txt && rm -rf /root/.cache
# Install the AWS Lambda RIC
# Since we are not using a base AWS image, there is some additional setup required. We need to set up the runtime
# interface client
# https://docs.aws.amazon.com/lambda/latest/dg/python-image.html#python-image-clients
# Additionally install the AWS Lambda RIC
RUN pip install awslambdaric
# Second stage: "runtime-image"