-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathDockerfile
98 lines (86 loc) · 3.72 KB
/
Dockerfile
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
FROM ubuntu:16.04
LABEL maintainer "Kazuo Yagi <kazuo.yagi@gmail.com>"
ARG BUILD_DATE
ARG VCS_REF
LABEL \
org.label-schema.build-date=$BUILD_DATE \
org.label-schema.docker.dockerfile="/Dockerfile" \
org.label-schema.license="GNU GENERAL PUBLIC LICENSE Version 3" \
org.label-schema.name="kyagi/rod" \
org.label-schema.url="https://github.com/kyagi/rod" \
org.label-schema.vcs-ref=$VCS_REF \
org.label-schema.vcs-type="Git" \
org.label-schema.vcs-url="https://github.com/kyagi/rod"
################################################################################
# Misc
################################################################################
RUN apt-get update && apt-get install -y \
bridge-utils man figlet vim
################################################################################
# Ruby
################################################################################
RUN apt-get update && apt-get install -y apt-file && \
apt-get update && apt-get install -y software-properties-common && \
add-apt-repository -y ppa:brightbox/ruby-ng && \
apt-get update && \
apt-get install -y \
ruby2.4=2.4.3-1bbox1~xenial1 ruby2.4-doc ruby2.4-dev ruby-build \
pry \
bundler
#RUN gem install \
# rubocop \
# guard
################################################################################
# Scala
################################################################################
# Install JDK, misc packages.
RUN apt-get update && apt-get install -y \
default-jdk \
apt-transport-https \
curl
# Install sbt. See http://www.scala-sbt.org/1.0/docs/Installing-sbt-on-Linux.html
RUN echo "deb https://dl.bintray.com/sbt/debian /" | tee -a /etc/apt/sources.list.d/sbt.list
RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 2EE0EA64E40A89B84B2DF73499E82A75642AC823
RUN apt-get update && apt-get install -y sbt
# Install ammonite. See http://ammonite.io/#Ammonite-REPL
RUN curl -L -o /usr/bin/amm https://git.io/vdNv2 && chmod +x /usr/bin/amm && mkdir /root/.ammonite
# Add libraries.
WORKDIR /root
RUN echo '// This is ammonite rc file.\n\
import $ivy.`com.lihaoyi::ammonite-ops:1.0.3`, ammonite.ops._\n\
import $ivy.`org.typelevel::cats-core:1.0.1`\n\
import $ivy.`com.chuusai::shapeless:2.3.3`\n\
import $ivy.`co.fs2::fs2-core:0.10.0-RC1`\n\
import $ivy.`co.fs2::fs2-io:0.10.0-RC1`\n\
import $ivy.`org.tpolecat::doobie-core:0.5.0-RC1`\n\
import $ivy.`org.tpolecat::doobie-h2:0.5.0-RC1`\n\
import $ivy.`org.tpolecat::doobie-hikari:0.5.0-RC1`\n\
import $ivy.`org.tpolecat::doobie-postgres:0.5.0-RC1`\n\
import $ivy.`org.tpolecat::doobie-specs2:0.5.0-RC1`\n\
import $ivy.`org.tpolecat::doobie-scalatest:0.5.0-RC1`\n\
import $ivy.`io.circe::circe-core:0.9.1`\n\
import $ivy.`io.circe::circe-generic:0.9.1`\n\
import $ivy.`io.circe::circe-parser:0.9.1`\n\
' > /root/.ammonite/predef.sc
# Cache libraries.
RUN export TERM=vt100 && script -qfc 'echo exit | amm -s' && rm typescript
################################################################################
# Go
################################################################################
RUN curl https://dl.google.com/go/go1.9.3.linux-amd64.tar.gz | tar zx -C /usr/local
ENV PATH $PATH:/usr/local/go/bin
ENV GOPATH /root/.go
ENV PATH $PATH:$GOPATH/bin
RUN go get -u github.com/motemen/gore \
github.com/nsf/gocode \
golang.org/x/tools/cmd/godoc
################################################################################
# Rod
################################################################################
RUN touch /etc/repls-on-docker
WORKDIR /root
COPY ./rod-prompt /root/.rod-prompt
COPY ./rod /usr/local/bin/rod
RUN echo '. .rod-prompt' >> .bashrc
RUN chmod +x /usr/local/bin/rod
CMD figlet REPLs on Docker && bash