Skip to content

Commit

Permalink
chore(dockerimage): add specific compiler version comment
Browse files Browse the repository at this point in the history
  • Loading branch information
msqtt committed May 20, 2024
1 parent 0a4c036 commit f0d6ede
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions build/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ RUN make

FROM alpine:3.16 AS prod
RUN apk update && apk upgrade
RUN apk add gcc
RUN apk add g++
RUN apk add go
RUN apk add python3
RUN apk add openjdk8
RUN apk add rust
RUN apk add gcc # 11.2.1_git20220219-r2
RUN apk add g++ # 11.2.1_git20220219-r2
RUN apk add go # 1.18.7-r0
RUN apk add python3 # 3.10.14-r1
RUN apk add openjdk8 # 8.392.08-r0
RUN apk add rust # 1.60.0-r2
RUN rm -vrf /var/cache/apk/*
WORKDIR /app
COPY --from=build /app/rootfs ./rootfs
Expand Down
4 changes: 2 additions & 2 deletions build/tarball.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM alpine:3.16
RUN apk update && apk upgrade
RUN apk add python3
RUN apk add openjdk8-jre
RUN apk add python3 # 3.10.14-r1
RUN apk add openjdk8-jre # 8.392.08-r0
RUN rm -vrf /var/cache/apk/*
RUN rm -vrf /etc/ssl/*
RUN rm -vrf /etc/terminfo/*
Expand Down

0 comments on commit f0d6ede

Please sign in to comment.