Skip to content

Commit 35b2516

Browse files
authored
Update go packages (remove v1.22 and add v1.24) (#38)
Add `--ignore-missing` to apt, so non-missing packages do not break the build
1 parent c55fe35 commit 35b2516

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

base/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ RUN groupadd --gid $USER_GID $USERNAME \
2121
ARG DEBIAN_FRONEND=noninteractive
2222

2323
RUN apt-get update \
24-
&& apt-get install -y --no-install-recommends \
24+
&& apt-get install -y --no-install-recommends --ignore-missing \
2525
apt-transport-https bash-completion ca-certificates curl \
2626
debian-keyring debian-archive-keyring git gnupg htop iputils-ping iproute2 jq less \
2727
ncdu net-tools openssh-client socat strace telnet tcpdump tzdata tmux vim wget \

dev/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ FROM ghcr.io/damyan/sak-base
33
USER root
44

55
RUN apt-get update \
6-
&& apt-get install -y --no-install-recommends \
7-
build-essential delve gdb golang-1.22-go golang-1.23-go make python3 python3-pip \
6+
&& apt-get install -y --no-install-recommends --ignore-missing \
7+
build-essential delve gdb golang-1.23-go golang-1.24-go make python3 python3-pip \
88
&& rm -rf /var/lib/apt/lists/*
99

1010
WORKDIR "/home/damyan"

net/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM ghcr.io/damyan/sak-base
33
USER root
44

55
RUN apt-get update \
6-
&& apt-get install -y --no-install-recommends \
6+
&& apt-get install -y --no-install-recommends --ignore-missing \
77
bind9-dnsutils mtr-tiny net-tools \
88
psmisc procps iperf3 tshark \
99
&& rm -rf /var/lib/apt/lists/*

0 commit comments

Comments
 (0)