Skip to content

Commit

Permalink
Merge pull request #1284 from crazy-max/dockerfiles-pin-bases
Browse files Browse the repository at this point in the history
test: fix multi-sudo dockerfile
  • Loading branch information
crazy-max authored Dec 17, 2024
2 parents 11be14d + da5b6c7 commit bcc9f4a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/multi-sudo.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# syntax=docker/dockerfile:1
FROM --platform=$BUILDPLATFORM golang:alpine AS build

FROM --platform=$BUILDPLATFORM alpine AS build
ARG TARGETPLATFORM
ARG BUILDPLATFORM
RUN echo "I am running on $BUILDPLATFORM, building for $TARGETPLATFORM" > /log
Expand All @@ -12,7 +13,7 @@ RUN apk --update --no-cache add \
&& rm -rf /tmp/* /var/cache/apk/*

USER buildx
RUN sudo chown buildx. /log
RUN sudo chown buildx: /log
USER root

FROM alpine
Expand Down

0 comments on commit bcc9f4a

Please sign in to comment.