forked from linuxserver-archive/docker-baseimage-guacgui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
19 lines (15 loc) · 637 Bytes
/
Copy pathDockerfile
File metadata and controls
19 lines (15 loc) · 637 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# dockergui
FROM phusion/baseimage:0.9.16
MAINTAINER Carlos Hernandez <carlos@techbyte.ca>
#########################################
## ENVIRONMENTAL CONFIG ##
#########################################
# Set correct environment variables
ENV HOME="/root" LC_ALL="C.UTF-8" LANG="en_US.UTF-8" LANGUAGE="en_US.UTF-8" TERM="xterm"
# Use baseimage-docker's init system
CMD ["/sbin/my_init"]
#########################################
## RUN INSTALL SCRIPT ##
#########################################
COPY ./files/ /tmp/
RUN chmod +x /tmp/install/install.sh && /tmp/install/install.sh && rm -r /tmp/install