debug output devplatform

Este commit está contenido en:
dev-docker 2021-05-19 15:33:08 +00:00
padre b14337ef0a
commit e427f472eb

Ver fichero

@ -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