Skip to content

Commit

Permalink
Install bash for our shell scripts.
Browse files Browse the repository at this point in the history
  • Loading branch information
Philipp Winter committed Dec 16, 2022
1 parent 550bb02 commit a70da2a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,11 @@ RUN CGO_ENABLED=0 GOOS=linux go build -trimpath -o ia2 ./
# need the tool keytool which is part of OpenJDK.
FROM amazoncorretto:8-alpine-jre

RUN apk add --no-cache bash

COPY --from=builder /src/ia2 /bin/
COPY start.sh /bin/
RUN chmod 755 /bin/start.sh
EXPOSE 8080

# Switch to the UID that's typically reserved for the user "nobody".
Expand Down

0 comments on commit a70da2a

Please sign in to comment.