You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
292 B
Docker
12 lines
292 B
Docker
ARG NPM_IMAGE
|
|
ARG NPM_VERSION
|
|
|
|
FROM $NPM_IMAGE:$NPM_VERSION
|
|
|
|
ARG STEP_CA_FQDN
|
|
ENV STEP_CA_FQDN=${STEP_CA_FQDN}
|
|
|
|
RUN echo -e "server=https://$STEP_CA_FQDN/acme/acme/directory\nno-verify-ssl = true" >> /etc/letsencrypt.ini
|
|
|
|
RUN sed -i "s\Let's Encrypt\\$STEP_CA_FQDN\g" /app/frontend/js/*.js
|