# Set correct environment variables. ENV HOME /root
# Regenerate SSH host keys. RUN /etc/my_init.d/00_regen_ssh_host_keys.sh
## Install an SSH of your choice. ADD google_compute_engine.pub /tmp/your_key RUN cat /tmp/your_key >> /root/.ssh/authorized_keys && rm -f /tmp/your_key
## apt-get update RUN apt-get -yq update
## Japanese Environment RUN apt-get install -y language-pack-ja ENV LANG ja_JP.UTF-8 RUN update-locale LANG=ja_JP.UTF-8
## Development Environment RUN apt-get install -y emacs24-nox emacs24-el
## dotfiles RUN mkdir .emacs.d ADD dotfiles/.emacs.d/init.el /root/.emacs.d/init.el
CMD ["/sbin/my_init"]
RUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*