We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e938294 commit eaddb96Copy full SHA for eaddb96
docker-images/wordmove/Dockerfile
@@ -0,0 +1,27 @@
1
+#
2
+# Wordmove Dockerfile
3
4
+
5
+# Pull base image.
6
+FROM ubuntu:14.04
7
8
+MAINTAINER bikecoders <[email protected]>
9
10
+RUN apt-get update && \
11
+ apt-get install -y \
12
+ openssh-server \
13
+ curl \
14
+ rsync \
15
+ mysql-client-5.5 \
16
+ sshpass
17
18
+RUN \gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3
19
+RUN \curl -sSL https://get.rvm.io | bash -s latest
20
+RUN echo "source /etc/profile.d/rvm.sh" >> /etc/bash.bashrc
21
+RUN /bin/bash -c "source /etc/profile.d/rvm.sh \
22
+ && rvm install 2.4.1 \
23
+ && gem install wordmove"
24
+ENV RUBYOPT="-KU -E utf-8:utf-8"
25
26
+WORKDIR /home
27
+CMD ["/bin/bash"]
0 commit comments