Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cloud
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
cloud
Merge requests
!1435
Issue
#3323864
: Fix the programming errors
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Issue
#3323864
: Fix the programming errors
issue/cloud-3323864:3323864-fix-the-programming-errors
into
5.x
Overview
2
Commits
6
Pipelines
0
Changes
62
All threads resolved!
Hide all comments
Merged
Yas Naoi
requested to merge
issue/cloud-3323864:3323864-fix-the-programming-errors
into
5.x
2 years ago
Overview
2
Commits
6
Pipelines
0
Changes
62
All threads resolved!
Hide all comments
Expand
0
0
Merge request reports
Compare
5.x
version 15
f87917bb
2 years ago
version 14
cb81500c
2 years ago
version 13
4863e50e
2 years ago
version 12
a95edb4a
2 years ago
version 11
65e81067
2 years ago
version 10
1d74d5af
2 years ago
version 9
d034ab4d
2 years ago
version 8
c3fe0304
2 years ago
version 7
dada8508
2 years ago
version 6
90dc06d4
2 years ago
version 5
a1c0d322
2 years ago
version 4
6ec38839
2 years ago
version 3
2e4ca6cf
2 years ago
version 2
1abcb2c1
2 years ago
version 1
90549648
2 years ago
5.x (base)
and
latest version
latest version
f87917bb
6 commits,
2 years ago
version 15
f87917bb
6 commits,
2 years ago
version 14
cb81500c
6 commits,
2 years ago
version 13
4863e50e
6 commits,
2 years ago
version 12
a95edb4a
6 commits,
2 years ago
version 11
65e81067
6 commits,
2 years ago
version 10
1d74d5af
6 commits,
2 years ago
version 9
d034ab4d
6 commits,
2 years ago
version 8
c3fe0304
6 commits,
2 years ago
version 7
dada8508
6 commits,
2 years ago
version 6
90dc06d4
6 commits,
2 years ago
version 5
a1c0d322
5 commits,
2 years ago
version 4
6ec38839
4 commits,
2 years ago
version 3
2e4ca6cf
3 commits,
2 years ago
version 2
1abcb2c1
2 commits,
2 years ago
version 1
90549648
1 commit,
2 years ago
62 files
+
114
−
144
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
62
Search (e.g. *.vue) (Ctrl+P)
deployments/docker/Dockerfile
+
5
−
6
Options
@@ -5,7 +5,6 @@ RUN set -eux; \
if
command
-v
a2enmod
;
then
\
a2enmod rewrite
;
\
fi
;
\
savedAptMark
=
"
$(
apt-mark showmanual
)
"
RUN
set
-eux
;
\
@@ -29,24 +28,24 @@ RUN set -eux; \
git clone https://github.com/krakjoe/apcu /usr/src/php/ext/apcu \
&& cd /usr/src/php/ext/apcu \
&& docker-php-ext-install apcu > /dev/null 2>&1; \
\
# Install OpCache.
docker-php-ext-install -j "$(nproc)" opcache > /dev/null 2>&1; \
\
# Install uploadprogress.
pecl install uploadprogress > /dev/null 2>&1 \
&& docker-php-ext-enable uploadprogress > /dev/null 2>&1; \
\
# Install Memcached.
git clone https://github.com/php-memcached-dev/php-memcached /usr/src/php/ext/memcached \
&& cd /usr/src/php/ext/memcached \
&& docker-php-ext-install memcached > /dev/null 2>&1; \
\
# Install graphic libraries and etc.
docker-php-ext-configure gd \
--with-freetype \
--with-jpeg > /dev/null 2>&1; \
\
docker-php-ext-install -j "$(nproc)" \
gd \
pdo_mysql \
Loading