Skip to content

Commit

Permalink
apk upgrade for openssl
Browse files Browse the repository at this point in the history
  • Loading branch information
hgarvison committed Nov 6, 2023
1 parent f86f070 commit 618d70f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docker/aasp/Dockerfile.build
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ RUN cd cmd/aasp && CGO_ENABLED=0 GOOS=linux go build -o /aasp -ldflags="-s -w" m

FROM alpine:3.18.4

RUN apk update && apk --no-cache add curl
RUN apk update && apk upgrade --no-cache && apk --no-cache add curl

COPY --from=build /aasp /get-snp-report /get-fake-snp-report /verbose-report ./bin/

Expand Down
2 changes: 1 addition & 1 deletion docker/aasp/Dockerfile.sample
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM alpine:3.18.4

RUN apk update && apk --no-cache add wget curl jq
RUN apk update && apk upgrade --no-cache && apk --no-cache add wget curl jq

COPY ./examples/aasp/unwrap.sh /bin/
COPY ./examples/aasp/wrapped /
Expand Down
2 changes: 1 addition & 1 deletion docker/encfs/Dockerfile.encfs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM alpine:3.18.4

RUN apk update && apk add --no-cache cryptsetup fuse3 curl
RUN apk update && apk upgrade --no-cache && apk add --no-cache cryptsetup fuse3 curl

COPY ./bin/azmount ./bin/remotefs ./bin/get-snp-report /bin/
COPY encfs.sh /
Expand Down
2 changes: 1 addition & 1 deletion docker/skr/Dockerfile.skr
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM alpine:3.18.4

RUN apk update && apk add --no-cache curl
RUN apk update && apk upgrade --no-cache && apk add --no-cache curl

COPY ./bin/skr ./bin/get-snp-report /bin/
COPY skr.sh tests/*_client.sh tests/skr_test.sh /
Expand Down

0 comments on commit 618d70f

Please sign in to comment.