Skip to content

Commit 1d41660

Browse files
committed
fix(dockerfile): added an OS upgrade step in order to mitigate vulnerabilities
Signed-off-by: Bruno Hivert <[email protected]>
1 parent ec32ff5 commit 1d41660

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

fetch-validator-status/Dockerfile

+3
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ LABEL summary="$SUMMARY" \
2525
version="$tag_version" \
2626
maintainer=""
2727

28+
# Make sure debian system is up to date
29+
RUN apt update && apt upgrade -y && apt-get clean
30+
2831
# Add local binaries and aliases to path
2932
ENV PATH="$HOME/.local/bin:$PATH"
3033

0 commit comments

Comments
 (0)