mirror of
https://ops.gitlab.net/gitlab-org/gitlab-build-images.git
synced 2025-12-09 10:02:56 +01:00
15 lines
534 B
Text
15 lines
534 B
Text
FROM ruby:2.3-slim
|
|
|
|
ENV PACKAGES="git-core pandoc texlive-latex-recommended texlive-xetex texlive-fonts-recommended lmodern ed file"
|
|
|
|
ADD / /
|
|
RUN /scripts/install-www-gitlab-com
|
|
|
|
ADD https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-ci-multi-runner-linux-amd64 /usr/bin/gitlab-runner-helper
|
|
RUN chmod +x /usr/bin/gitlab-runner-helper
|
|
|
|
# Set UTF-8 http://jaredmarkell.com/docker-and-locales/
|
|
# Must be set after install-essentials is run
|
|
ENV LANG en_US.UTF-8
|
|
ENV LANGUAGE en_US:en
|
|
ENV LC_ALL en_US.UTF-8
|