Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
GitLab Drupal CI
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Docker
GitLab Drupal CI
Merge requests
!68
Merging develop into main
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Merging develop into main
develop
into
main
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
jurgenhaas
requested to merge
develop
into
main
1 year ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
43b760a1
1 commit,
1 year ago
1 file
+
13
−
6
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Dockerfile
+
13
−
6
Options
@@ -13,18 +13,19 @@ LABEL com.example.vendor="LakeDrops" \
ARG
ALPINE_VERSION
ARG
PHP_MAJOR_VERSION
ARG
AHOY_VERSION=2.1.1
ARG
DIFFTASTIC_VERSION=0.5
5.0
ARG
DIFFTASTIC_VERSION=0.5
6.1
ARG
DOCKER_CHANNEL=stable
# Check for latest at https://download.docker.com/linux/static/stable/x86_64/
ARG
DOCKER_VERSION=2
5
.0.
3
ARG
DOCKER_VERSION=2
6
.0.
0
ARG
GIT_EXTRAS_VERSION=7.1.0
ARG
GLAB_VERSION=1.3
6
.0
ARG
GLAB_VERSION=1.3
7
.0
ARG
apkArch
ARG
buildx_version=0.1
2
.1
ARG
buildx_version=0.1
3
.1
# IMPORTANT: keep the docker compose version in sync with the Ansible Docker role.
ARG
compose_version=2.2
4.5
ARG
composer_version=2.7.
1
ARG
compose_version=2.2
5.0
ARG
composer_version=2.7.
2
ARG
dockerArch
ARG
fx_version=33.0.0
ARG
glibc_version=2.35-r1
ARG
yq_version=4.42.1
@@ -61,6 +62,12 @@ RUN echo 'hosts: files dns' > /etc/nsswitch.conf && \
fi
&&
\
chmod
+x /usr/local/bin/yq
&&
\
\
if
!
curl
-fSL
-o
/usr/local/bin/fx
"https://github.com/antonmedv/fx/releases/download/
${
fx_version
}
/fx_linux_amd64"
;
then
\
echo
>
&2
"error: failed to download 'fx'"
;
\
exit
1
;
\
fi
&&
\
chmod
+x /usr/local/bin/fx
&&
\
\
mkdir
-p
/root/.ssh
&&
\
echo
"StrictHostKeyChecking no"
>>
/root/.ssh/config
&&
\
\
Loading