Skip to content

Commit

Permalink
fix: dockerfile inconsistencies (#515)
Browse files Browse the repository at this point in the history
  • Loading branch information
wass3r authored Aug 16, 2024
1 parent c844602 commit dc4cfeb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ ENV GROUP=flottbot
ENV UID=900
ENV GID=900

RUN apk --no-cache add ca-certificates curl jq && mkdir config && \
RUN apk add --no-cache ca-certificates curl jq && mkdir config && \
addgroup -g "$GID" -S "$GROUP" && adduser -S -u "$UID" -G "$GROUP" "$USERNAME"

COPY --from=build /src/flottbot /flottbot
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.golang
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ ENV GROUP=flottbot
ENV UID=900
ENV GID=900

RUN apk --no-cache add ca-certificates && mkdir config && \
RUN apk add --no-cache ca-certificates curl jq && mkdir config && \
addgroup -g "$GID" -S "$GROUP" && adduser -S -u "$UID" -G "$GROUP" "$USERNAME"

COPY --from=build /src/flottbot /flottbot
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.python
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ ENV GROUP=flottbot
ENV UID=900
ENV GID=900

RUN apk --no-cache add ca-certificates && mkdir config && \
RUN apk add --no-cache ca-certificates curl jq && mkdir config && \
addgroup -g "$GID" -S "$GROUP" && adduser -S -u "$UID" -G "$GROUP" "$USERNAME"

COPY --from=build /src/flottbot /flottbot
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.ruby
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ ENV GROUP=flottbot
ENV UID=900
ENV GID=900

RUN apk add --no-cache ca-certificates ruby-dev build-base && mkdir config && \
RUN apk add --no-cache ca-certificates curl jq ruby-dev build-base && mkdir config && \
addgroup -g "$GID" -S "$GROUP" && adduser -S -u "$UID" -G "$GROUP" "$USERNAME"

COPY --from=build /src/flottbot /flottbot
Expand Down

0 comments on commit dc4cfeb

Please sign in to comment.