emacs-collab/docker/build.sh

9 lines
165 B
Bash
Raw Normal View History

2017-06-14 22:45:15 +00:00
#!/bin/sh
2017-06-15 09:26:01 +00:00
mkdir tmp
cp ../init_passwd.rb ./tmp/
cp ../run_server.sh ./tmp/
cp ../eshell ./tmp/
cp ../Gemfile* ./tmp/
2017-06-14 22:45:15 +00:00
docker build -t emacs-collab:latest .
2017-06-15 09:26:01 +00:00
rm -R tmp