add USER and PASS ENV to Dockerfile

This commit is contained in:
kking124 2021-06-02 09:17:30 -04:00 committed by GitHub
parent 024aadbfd2
commit a558cce412
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,7 +6,7 @@ ARG BUILD_DEPENDENCIES="npm \
# Get dependencies # Get dependencies
RUN apk add --update --no-cache ${BUILD_DEPENDENCIES} RUN apk add --update --no-cache ${BUILD_DEPENDENCIES}
ENV USER=admin PASS=admin
WORKDIR /build WORKDIR /build
# Add sources # Add sources