Skip to content

Commit

Permalink
Use different base image to fix gcc error
Browse files Browse the repository at this point in the history
  • Loading branch information
eivindsjovold committed Jul 11, 2023
1 parent cb38554 commit 4b97b07
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM python:3.10-slim as builder
FROM python:3.10.12-slim-bookworm as builder

RUN python -m venv --copies /opt/venv
ENV PATH="/opt/venv/bin:$PATH"

COPY . .
RUN pip install .

FROM ghcr.io/equinor/isar:v1.15.1
FROM ghcr.io/equinor/isar:v1.16.3
COPY --from=builder /opt/venv /opt/venv
ENV PATH="/opt/venv/bin:$PATH"

0 comments on commit 4b97b07

Please sign in to comment.