File tree 3 files changed +10
-18
lines changed
3 files changed +10
-18
lines changed Original file line number Diff line number Diff line change
1
+ .idea /
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:jammy-20240212
2
+ FROM ubuntu:noble-20240605
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
- # git-lfs v3.4.0 - last available at the 23.10.2023 and it contains bug. Don't update to the version 3.4.0 !!!
9
- # https://codefresh-io.atlassian.net/browse/CR-20633
10
- # Next preferred version must be >=3.4.1 and should be tested
11
- RUN apt-get install git-lfs=3.0.2-1 && \
12
- git lfs install
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 && \
10
+ git lfs install
13
11
14
12
# installing busybox
15
- ARG BUSYBOX_VERSION=1.31.0
13
+ ARG BUSYBOX_VERSION=1:1.36.1-6ubuntu3
16
14
17
- RUN curl -sL https://busybox.net/downloads/binaries/${BUSYBOX_VERSION}-defconfig-multiarch-musl/busybox-x86_64 -o busybox && \
18
- ls -l busybox && \
19
- chmod +x busybox && \
20
- mv busybox /usr/bin/ && \
21
- ls /usr/bin/busybox && \
22
- busybox | head -n 1
23
-
24
-
25
- RUN ln -s /bin/busybox /usr/bin/[[
15
+ RUN apt-get install busybox=${BUSYBOX_VERSION} && \
16
+ ln -s /bin/busybox /usr/bin/[[
26
17
27
18
COPY ./start.sh /run/start.sh
28
19
RUN chmod +x /run/start.sh
29
20
30
21
# USER nodeuser
31
22
RUN addgroup --gid 3000 nodegroup \
32
- && adduser --uid 3000 --home /home/nodeuser --ingroup nodegroup --shell /bin/sh --gecos "" --disabled-password nodeuser
23
+ && adduser --uid 3000 --home /home/nodeuser --ingroup nodegroup --shell /bin/sh --gecos "" --disabled-password nodeuser
33
24
USER nodeuser
34
25
35
26
CMD ["/run/start.sh" ]
Original file line number Diff line number Diff line change 1
- version : 10.1.27
1
+ version : 10.1.28
You can’t perform that action at this time.
0 commit comments