Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
CCOLLOT committed Oct 21, 2023
1 parent c2a5b5f commit ce68cab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -ldflags="-s -w" -o /app/appn

FROM alpine:3.18.4 AS final-stage
RUN apk add --update --no-cache ca-certificates
RUN addgroup -S appuser && appuser -u 1000 -S appuser -G appuser
RUN addgroup -S appuser && adduser -u 1000 -S appuser -G appuser
USER 1000
WORKDIR ${HOME}/app
COPY --from=builder /app/appnametochange .
Expand Down

0 comments on commit ce68cab

Please sign in to comment.