gitlab-build-images/Dockerfile.ruby-2.3.3-golang-1.8-git-2.7-chrome-59.0-node-7.1-postgresql-9.6
2017-06-10 02:15:52 -05:00

15 lines
299 B
Groff

FROM ruby:2.3.3
ADD / /
RUN /scripts/install-essentials
RUN /scripts/install-chrome
RUN /scripts/install-node
RUN /scripts/install-golang
RUN /scripts/install-postgresql
ENV PATH /usr/local/go/bin:$PATH
RUN locale-gen en_US.UTF-8
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8