Skip to content

Commit

Permalink
initial Dockerfile for module maintenance
Browse files Browse the repository at this point in the history
  • Loading branch information
tobru committed Aug 10, 2016
1 parent e18dd6f commit 0e20213
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
FROM ruby:2.1-alpine
MAINTAINER Tobias Brunner <tobias.brunner@vshn.ch>

ENV PUPPET_VERSION "~> 3.8.0"
RUN apk add --no-cache git bash alpine-sdk && \
adduser -S puppet && \
mkdir /home/puppet/gitlab && \
chown -R puppet /home/puppet

WORKDIR /home/puppet/gitlab
COPY Gemfile /home/puppet/gitlab

#USER puppet
RUN bundle install --without development system_tests

0 comments on commit 0e20213

Please sign in to comment.