TeX Live!

This commit is contained in:
Christoffer Müller Madsen 2017-06-15 13:31:29 +02:00
parent 7615e29b37
commit 8d5e703059
3 changed files with 31 additions and 6 deletions

View File

@ -1,5 +1,6 @@
FROM ubuntu:xenial
# Install tools
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
@ -9,20 +10,29 @@ 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
# Copy Emacs Shell
COPY tmp/eshell /usr/bin/
# Install Ruby gems
COPY tmp/Gemfile* /tmp/
WORKDIR /tmp
RUN bundle install
ENV app /app
RUN mkdir $app
COPY tmp/run_server.sh /app/
WORKDIR $app
#ENV BUNDLE_PATH /box
#ADD ../. $app
# TeX Live
ENV TEX /tex
RUN mkdir $TEX
COPY tmp/texlive $TEX
RUN echo 'export PATH=$PATH:/tex/bin/x86_64-linux' > /etc/profile.d/texlive.sh
# Copy run_server
ENV app /app
RUN mkdir $app
COPY tmp/run_server.sh $app
WORKDIR $app
VOLUME /home
EXPOSE 22

View File

@ -1,8 +1,22 @@
#!/bin/sh
ORIG_DIR=`pwd`
rm -r tmp
mkdir tmp
cp ../init_passwd.rb ./tmp/
cp ../run_server.sh ./tmp/
cp ../eshell ./tmp/
cp ../Gemfile* ./tmp/
# TeX Live
#if [ "$(uname)" == "Darwin" ]; then
# cd texlive/bin/x86_64-darwin
#elif [ "$(expr substr $(uname -s) 1 5)" == "Linux" ]; then
# cd texlive/bin/x86_64-linux
#fi
#./tlmgr update --all
cd $ORIG_DIR
cp -r texlive ./tmp/
rm -r tmp/texlive/bin/x86_64-darwin
docker build -t emacs-collab:latest .
rm -R tmp

3
eshell
View File

@ -1,7 +1,8 @@
#!/bin/sh
. /etc/profile
if [ -z $EMACS ]; then
emacs --daemon
/usr/bin/emacsclient -t
else
/bin/sh
/bin/bash
fi