summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-12-20 20:16:17 +0200
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-12-20 20:16:17 +0200
commit632da319bf3bd57ee6c07c930bc2a5825dc224dd (patch)
treece626576f25395df308a67a40e26fbd3b0be4b3f
parenta9786733621f42affb8cb77bfe19a78f6c6d33d9 (diff)
parentc981d693380e5c5c0b66aa654e63cf653f1e5f42 (diff)
downloadgitlab-ce-632da319bf3bd57ee6c07c930bc2a5825dc224dd.tar.gz
Merge pull request #8455 from kfei/docker/update-omnibus-package
Update the Omnibus package in Dockerfile
-rw-r--r--docker/Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile
index aea59916c7a..41514e76687 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -11,7 +11,7 @@ RUN apt-get update -q \
# If the Omnibus package version below is outdated please contribute a merge request to update it.
# If you run GitLab Enterprise Edition point it to a location where you have downloaded it.
RUN TMP_FILE=$(mktemp); \
- wget -q -O $TMP_FILE https://downloads-packages.s3.amazonaws.com/ubuntu-14.04/gitlab_7.5.2-omnibus.5.2.1.ci-1_amd64.deb \
+ wget -q -O $TMP_FILE https://downloads-packages.s3.amazonaws.com/ubuntu-14.04/gitlab_7.5.3-omnibus.5.2.1.ci-1_amd64.deb \
&& dpkg -i $TMP_FILE \
&& rm -f $TMP_FILE