Skip to content

Commit

Permalink
Remov empty quotes from platform args
Browse files Browse the repository at this point in the history
  • Loading branch information
Minituff authored Oct 20, 2023
1 parent fb0fa65 commit 63aca9c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Use base docker image. Contains the docker commands we need to start and stop containers
FROM docker:24.0.6-cli

ARG TARGETPLATFORM=""
ARG BUILDPLATFORM=""
ARG TARGETPLATFORM
ARG BUILDPLATFORM
RUN echo "I am running on $BUILDPLATFORM, building for $TARGETPLATFORM"
ENV BUILDPLATFORM=${BUILDPLATFORM}
ENV TARGETPLATFORM=${TARGETPLATFORM}
Expand Down

0 comments on commit 63aca9c

Please sign in to comment.