debug output devplatform

This commit is contained in:
dev-docker 2021-05-19 15:33:08 +00:00
parent b14337ef0a
commit e427f472eb
1 changed files with 2 additions and 1 deletions

View File

@ -3,7 +3,8 @@ ARG DEVPLATFORM=${TARGETPLATFORM:-linux/amd64}
FROM --platform=$DEVPLATFORM node:15-alpine AS dev
# Install pre-requisites
RUN case $DEVPLATFORM in \
RUN echo DEVPLATFORM: $DEVPLATFORM \
&& case $DEVPLATFORM in \
*arm*) apk add --no-cache git python3 build-base ;; \
*) apk add --no-cache git python3 ;; \
esac