Sha256: bd642b7ba2466bffd42550ce8bb3e278b6de71072e1c0a67f06f4c672d38ea6e
Contents?: true
Size: 1.16 KB
Versions: 3
Compression:
Stored size: 1.16 KB
Contents
FROM docker:latest MAINTAINER Timeboard <hello@timeboard.me> # Setting up group and user # - envs ARG DOCKER_GID ARG USER_UID ARG USER_NAME # - fix to change gid of 999 to 99 so that addgroup is free to create a group with 999 as gid # - Create group & user. Then add user to group RUN sed -i "s/999/99/" /etc/group && \ addgroup --gid "$DOCKER_GID" "docker" && \ adduser --disabled-password --gecos "" --uid "$USER_UID" "$USER_NAME" && \ adduser "$USER_NAME" "docker" # We need the following: # - git, because that gets us the git-http-backend CGI script # - fcgiwrap, because that is how nginx does CGI # - spawn-fcgi, to launch fcgiwrap and to create the unix socket RUN apk add --update coreutils && \ apk add --update git && \ apk add --update git-daemon && \ apk add --update ruby && \ apk add --update fcgiwrap && \ apk add --update spawn-fcgi && \ rm -rf /var/cache/apk/* RUN gem install smartcloud --no-rdoc --no-ri # launch fcgiwrap via spawn-fcgi; launch nginx in the foreground # so the container doesn't die on us; supposedly we should be # using supervisord or something like that instead, but this # will do CMD "git, fcgiwrap & spawn-fcgi installed"
Version data entries
3 entries across 3 versions & 1 rubygems