Skip to content

Commit eaddb96

Browse files
committed
Adding docker-file for wordmove service
1 parent e938294 commit eaddb96

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

docker-images/wordmove/Dockerfile

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)