-
Notifications
You must be signed in to change notification settings - Fork 2
/
Dockerfile-ruby2.7
49 lines (41 loc) · 1.51 KB
/
Dockerfile-ruby2.7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
FROM ruby:2.7.1-buster
############################
########## LOCALE ##########
############################
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends locales
ENV CONTAINER_LOCALE en_US
RUN sed -i -e "s/# ${CONTAINER_LOCALE}.UTF-8 UTF-8/${CONTAINER_LOCALE}.UTF-8 UTF-8/" /etc/locale.gen && \
dpkg-reconfigure --frontend=noninteractive locales && \
update-locale LANG=${CONTAINER_LOCALE}.UTF-8
ENV LANG ${CONTAINER_LOCALE}.UTF-8
############################
########## NODEJS ##########
############################
RUN curl -sL https://deb.nodesource.com/setup_12.x | bash - && \
apt-get install -y --no-install-recommends nodejs
##########################
########## YARN ##########
##########################
RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \
echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list && \
apt-get update && \
apt-get install -y --no-install-recommends yarn
##########################
########## GOSU ##########
##########################
RUN set -eux; \
apt-get update; \
apt-get install -y gosu; \
# verify that the binary works
gosu nobody true
#################################
######## Clean apt cache ########
#################################
RUN rm -rf /var/lib/apt/lists/*
##########################
########## REST ##########
##########################
RUN gem install bundler &&\
gem install bundler -v '~> 1.0'
ADD inputrc /etc/inputrc