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

latest.Dockerfile - gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 517efa09e6351b95f80142bbbc95068b7fbdab76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
FROM nginx:1.23.1-alpine

ENV TARGET=/usr/share/nginx/html

# Remove default NGINX HTML files
RUN rm -rf /usr/share/nginx/html/*

# Get all the archive static HTML and put it into place
# Include the versions found in 'content/versions.json' under "current" and "last_minor"
COPY --from=registry.gitlab.com/gitlab-org/gitlab-docs:16.8 ${TARGET} ${TARGET}
COPY --from=registry.gitlab.com/gitlab-org/gitlab-docs:16.7 ${TARGET} ${TARGET}
COPY --from=registry.gitlab.com/gitlab-org/gitlab-docs:16.6 ${TARGET} ${TARGET}