mirror of
https://ops.gitlab.net/gitlab-org/gitlab-build-images.git
synced 2025-12-08 17:42:56 +01:00
9 lines
176 B
Docker
9 lines
176 B
Docker
FROM ruby:2.7
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y cmake
|
|
|
|
# Set UTF-8 http://jaredmarkell.com/docker-and-locales/
|
|
ENV LANG C.UTF-8
|
|
ENV LANGUAGE C
|
|
ENV LC_ALL C.UTF-8
|