This commit is contained in:
Jessica Frazelle 2015-03-09 10:43:29 -07:00
parent 7497c01c4e
commit 0171370ab8
2 changed files with 13 additions and 1 deletions

13
remmina/Dockerfile Normal file
View File

@ -0,0 +1,13 @@
FROM ubuntu:14.10
MAINTAINER Jessica Frazelle <jess@docker.com>
RUN apt-get update && apt-get install -y \
software-properties-common \
--no-install-recommends && \
apt-add-repository ppa:remmina-ppa-team/remmina-next && \
apt-get update && apt-get install -y \
remmina \
remmina-plugin-rdp \
--no-install-recommends
ENTRYPOINT [ "remmina" ]

View File

@ -12,7 +12,6 @@ RUN apt-get update && apt-get install -y \
ENV HOME /home/user
RUN useradd --create-home --home-dir $HOME user \
&& mkdir -p $HOME/.irssi \
&& chown -R user:user $HOME
ENV LANG C.UTF-8