Skip to content
This repository was archived by the owner on Dec 20, 2025. It is now read-only.

Commit c23d21a

Browse files
authored
fix(ubuntu): add commands so apt-get can install libc (#1203)
specifically: rm /var/lib/dpkg/info/libc-bin.* && apt-get clean to fix errors like #9 102.9 Processing triggers for libc-bin (2.35-0ubuntu3.8) ... #9 103.0 qemu: uncaught target signal 11 (Segmentation fault) - core dumped #9 103.4 Segmentation fault (core dumped) #9 103.4 qemu: uncaught target signal 11 (Segmentation fault) - core dumped #9 103.8 Segmentation fault (core dumped) #9 103.8 dpkg: error processing package libc-bin (--configure): #9 103.8 installed libc-bin package post-installation script subprocess returned error exit status 139 from https://github.com/spinnaker/fiat/actions/runs/13294115878/job/37121762284?pr=1202 suggestion from https://stackoverflow.com/a/78107622
1 parent 54fff3a commit c23d21a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile.ubuntu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM ubuntu:jammy
22
LABEL maintainer="sig-platform@spinnaker.io"
3-
RUN apt-get update && apt-get -y install curl openjdk-17-jre-headless wget
3+
RUN rm /var/lib/dpkg/info/libc-bin.* && apt-get clean && apt-get update && apt-get -y install curl openjdk-17-jre-headless wget
44
RUN adduser --system --uid 10111 --group spinnaker
55
COPY fiat-web/build/install/fiat /opt/fiat
66
RUN mkdir -p /opt/fiat/plugins && chown -R spinnaker:nogroup /opt/fiat/plugins

0 commit comments

Comments
 (0)