File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
# moving to ubuntu instead of debian to solve high vulnerabilities
2
- FROM ubuntu:noble-20240605
2
+ FROM ubuntu:noble-20250619
3
3
4
4
RUN apt-get update && \
5
5
apt-get install -y curl bash openssl git && \
6
6
apt-get clean
7
7
8
8
RUN curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash && \
9
- apt-get install git-lfs=3.5 .1 && \
9
+ apt-get install git-lfs=3.6 .1 && \
10
10
git lfs install
11
11
12
12
# installing busybox
13
- ARG BUSYBOX_VERSION=1:1.36.1-6ubuntu3
13
+ ARG BUSYBOX_VERSION=1:1.36.1-6ubuntu3.1
14
14
15
- RUN apt-get install busybox=${BUSYBOX_VERSION} && \
15
+ RUN apt-get update && \
16
+ apt-get install busybox=${BUSYBOX_VERSION} && \
16
17
ln -s /bin/busybox /usr/bin/[[
17
18
18
19
COPY ./start.sh /run/start.sh
19
20
RUN chmod +x /run/start.sh
20
21
21
- # USER nodeuser
22
22
RUN addgroup --gid 3000 nodegroup \
23
23
&& adduser --uid 3000 --home /home/nodeuser --ingroup nodegroup --shell /bin/sh --gecos "" --disabled-password nodeuser
24
24
USER nodeuser
Original file line number Diff line number Diff line change 1
- version : 10.3.1
1
+ version : 10.3.2
You can’t perform that action at this time.
0 commit comments