emacs-collab/docker/Dockerfile

30 lines
625 B
Docker
Raw Normal View History

2017-06-14 22:45:15 +00:00
FROM ubuntu:xenial
RUN apt-get update
RUN apt-get install -y emacs-nox openssh-server
RUN apt-get install -y ruby ruby-dev build-essential libsqlite3-dev sqlite3
RUN gem install bundler
2017-06-14 22:45:15 +00:00
RUN mkdir /var/run/sshd
# SSH login fix. Otherwise user is kicked off after login
RUN sed 's@session\s*required\s*pam_loginuid.so@session optional pam_loginuid.so@g' -i /etc/pam.d/sshd
2017-06-15 09:26:01 +00:00
COPY tmp/eshell /usr/bin/
2017-06-14 22:45:15 +00:00
2017-06-15 09:26:01 +00:00
COPY tmp/Gemfile* /tmp/
2017-06-14 22:45:15 +00:00
WORKDIR /tmp
RUN bundle install
ENV app /app
RUN mkdir $app
2017-06-15 09:26:01 +00:00
COPY tmp/run_server.sh /app/
2017-06-14 22:45:15 +00:00
WORKDIR $app
#ENV BUNDLE_PATH /box
#ADD ../. $app
VOLUME /home
EXPOSE 22
2017-06-15 09:26:01 +00:00
ENTRYPOINT ["/app/run_server.sh"]