Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAchilleas Pipinellis <axil@gitlab.com>2020-07-08 16:10:07 +0300
committerAchilleas Pipinellis <axil@gitlab.com>2020-07-08 16:50:26 +0300
commit3380644f843714d9e3e3912c605ec8eddb039ae6 (patch)
treea2fc5d10617d2044c22d0266d86a8b6f55c99f59 /dockerfiles
parent1223670d0ada4534b1e8b60c7607a32f2197b9ac (diff)
Do not hardcode the path of the minify binary
Make it so minify-assets.sh can also be run locally.
Diffstat (limited to 'dockerfiles')
-rw-r--r--dockerfiles/Dockerfile.bootstrap2
1 files changed, 1 insertions, 1 deletions
diff --git a/dockerfiles/Dockerfile.bootstrap b/dockerfiles/Dockerfile.bootstrap
index d65697b0..9dfdd857 100644
--- a/dockerfiles/Dockerfile.bootstrap
+++ b/dockerfiles/Dockerfile.bootstrap
@@ -28,7 +28,7 @@ RUN yarn install
# Copy scripts used for static HTML post-processing
COPY scripts /scripts/
-COPY --from=minifier /minify /scripts/minify
+COPY --from=minifier /minify /usr/local/bin/minify
MAINTAINER GitLab Documentation Team