Skip to content
Snippets Groups Projects
Commit 52c280c2 authored by Kevin Lyda's avatar Kevin Lyda :speech_balloon:
Browse files

Fix docker build issues.

parent 3aa34844
Branches
No related tags found
No related merge requests found
...@@ -3,8 +3,10 @@ LABEL maintainer="Kevin Lyda <lyda@gitlab.com>" ...@@ -3,8 +3,10 @@ LABEL maintainer="Kevin Lyda <lyda@gitlab.com>"
EXPOSE 80 22 EXPOSE 80 22
RUN DEBIAN_FRONTEND=noninteractive \ RUN apt-get update \
apt-get install curl openssh-server ca-certificates postfix && DEBIAN_FRONTEND=noninteractive \
apt-get install -y curl openssh-server ca-certificates postfix \
&& apt-get clean
ADD app /app ADD app /app
ENTRYPOINT ["/app/init"] ENTRYPOINT ["/app/init"]
...@@ -11,7 +11,8 @@ EOF ...@@ -11,7 +11,8 @@ EOF
exit 1 exit 1
fi fi
apt-get update
curl -s $base_url$EDITION/script.deb.sh | bash curl -s $base_url$EDITION/script.deb.sh | bash
apt-get install gitlab-${EDITION}=${VERSION}-${EDITION}.0 apt-get install -y gitlab-${EDITION}=${VERSION}-${EDITION}.0
gitlab-ctl reconfigure gitlab-ctl reconfigure
exec bash exec bash
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment