-
Notifications
You must be signed in to change notification settings - Fork 6
/
Dockerfile.download
71 lines (59 loc) · 1.68 KB
/
Dockerfile.download
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# Linux support for the bin/setup script.
#
# vim: ft=Dockerfile
#
# © 2021 Konstantin Gredeskoul, All rights reserved, MIT License.
#
# docker build . -t ruby-puma-daemon:latest
# docker run -it ruby-puma-daemon:latest
#
# Once in the container:
#
# # Run specs in Linux:
# $ bundle exec rspec
# $ bundle exec puma -C config/puma.rb spec/fixtures/lobster.ru
#
FROM ruby:3.1
RUN apt-get update -y && \
apt-get install -yqq \
build-essential \
git
ENV TERM=xterm-256color \
LC_ALL=en_US.UTF-8 \
LANG=en_US.UTF-8 \
LANGUAGE=en_US.UTF-8 \
USER=root \
HOME=/root \
DEBIAN_FRONTEND=noninteractive \
DEBCONF_NONINTERACTIVE_SEEN=true \
TZ=Pacific/Los_Angeles
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
RUN apt-get update -y && \
apt-get install -yqq locales
RUN locale-gen en_US.UTF-8
RUN apt-get update -y && \
apt-get install -yqq \
silversearcher-ag \
curl \
vim \
htop \
direnv \
sudo
ENV SHELL_INIT="${HOME}/.bashrc"
RUN set -e && \
cd ${HOME} && \
git clone https://github.com/kigster/bash-it .bash_it && \
cd .bash_it && \
./install.sh -s && \
sed -i'' -E 's/bobby/powerline-multiline/g' ${SHELL_INIT} && \
echo 'eval "$(direnv hook bash)"' >>${SHELL_INIT} && \
gem install sym --no-document >/dev/null
RUN echo 'powerline.prompt.set-right-to ruby go user_info ssh clock' >>${SHELL_INIT} && \
echo 'export POWERLINE_PROMPT_CHAR="#"' >>${SHELL_INIT}
ENV PUMAD_HOME=/app/puma-daemon
RUN mkdir -p ${PUMAD_HOME}
WORKDIR ${PUMAD_HOME}
COPY . ${PUMAD_HOME}
RUN test -f .envrc && direnv allow . || true
RUN bundle install
ENTRYPOINT /bin/bash -l