Dockerfile 1.15 KB
Newer Older
1 2 3 4
FROM ubuntu:14.04

# Install required packages
RUN apt-get update -q \
kfei's avatar
kfei committed
5 6
    && DEBIAN_FRONTEND=noninteractive apt-get install -qy --no-install-recommends \
      ca-certificates \
7
      openssh-server \
8 9
      wget \
      apt-transport-https
10 11

# Download & Install GitLab
12
# If you run GitLab Enterprise Edition point it to a location where you have downloaded it.
13 14 15
RUN echo "deb https://packages.gitlab.com/gitlab/gitlab-ce/ubuntu/ `lsb_release -cs` main" > /etc/apt/sources.list.d/gitlab_gitlab-ce.list
RUN wget -q -O - https://packages.gitlab.com/gpg.key | apt-key add -
RUN apt-get update && apt-get install -yq --no-install-recommends gitlab-ce
16 17 18 19 20 21 22 23 24 25 26 27

# Manage SSHD through runit
RUN mkdir -p /opt/gitlab/sv/sshd/supervise \
    && mkfifo /opt/gitlab/sv/sshd/supervise/ok \
    && printf "#!/bin/sh\nexec 2>&1\numask 077\nexec /usr/sbin/sshd -D" > /opt/gitlab/sv/sshd/run \
    && chmod a+x /opt/gitlab/sv/sshd/run \
    && ln -s /opt/gitlab/sv/sshd /opt/gitlab/service \
    && mkdir -p /var/run/sshd

# Expose web & ssh
EXPOSE 80 22

28 29 30 31
# Copy assets
COPY assets/wrapper /usr/local/bin/

# Wrapper to handle signal, trigger runit and reconfigure GitLab
32
CMD ["/usr/local/bin/wrapper"]