Skip to content
This repository was archived by the owner on Jun 30, 2022. It is now read-only.

Commit 5c4cc66

Browse files
author
Carlos Hernandez
committed
Initial commit
0 parents  commit 5c4cc66

File tree

20 files changed

+1186
-0
lines changed

20 files changed

+1186
-0
lines changed

Dockerfile

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# docker-baseimage-gui
2+
FROM lsiobase/ubuntu:amd64-bionic
3+
MAINTAINER Carlos Hernandez <carlos@techbyte.ca>
4+
5+
#########################################
6+
## ARGUMENTS ##
7+
#########################################
8+
ARG DEBIAN_FRONTEND=noninteractive
9+
ARG BUILD_DATE
10+
ARG VERSION
11+
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
12+
LABEL maintainer="HurricaneHrndz"
13+
14+
#########################################
15+
## INSTALL DEPENDENCIES ##
16+
#########################################
17+
RUN apt-get update \
18+
&& apt-get -y upgrade \
19+
&& apt-get install -qy --no-install-recommends \
20+
autocutsel \
21+
ca-certificates \
22+
curl \
23+
fuse \
24+
gawk \
25+
libfuse2 \
26+
libx11-dev \
27+
libxfixes3 \
28+
libxml2 \
29+
libxrandr2 \
30+
openbox \
31+
pulseaudio \
32+
x11-apps \
33+
x11-xserver-utils \
34+
xfonts-base \
35+
xorgxrdp \
36+
xrdp \
37+
xserver-xorg-core \
38+
xutils \
39+
zlib1g \
40+
&& apt-get clean -y \
41+
&& apt-get autoremove -y \
42+
&& rm -rf /tmp/* /var/tmp/* \
43+
&& rm -rf /var/lib/apt/lists/*
44+
45+
COPY root /
46+
VOLUME [ "/config" ]
47+
EXPOSE 3389
48+
ENTRYPOINT ["/init"]

Dockerfile.aarch64

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# docker-baseimage-gui
2+
FROM lsiobase/ubuntu:aarch64-bionic
3+
MAINTAINER Carlos Hernandez <carlos@techbyte.ca>
4+
5+
#########################################
6+
## ARGUMENTS ##
7+
#########################################
8+
ARG DEBIAN_FRONTEND=noninteractive
9+
ARG BUILD_DATE
10+
ARG VERSION
11+
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
12+
LABEL maintainer="HurricaneHrndz"
13+
14+
#########################################
15+
## INSTALL DEPENDENCIES ##
16+
#########################################
17+
RUN apt-get update \
18+
&& apt-get -y upgrade \
19+
&& apt-get install -qy --no-install-recommends \
20+
autocutsel \
21+
ca-certificates \
22+
curl \
23+
fuse \
24+
gawk \
25+
libfuse2 \
26+
libx11-dev \
27+
libxfixes3 \
28+
libxml2 \
29+
libxrandr2 \
30+
openbox \
31+
pulseaudio \
32+
x11-apps \
33+
x11-xserver-utils \
34+
xfonts-base \
35+
xorgxrdp \
36+
xrdp \
37+
xserver-xorg-core \
38+
xutils \
39+
zlib1g \
40+
&& apt-get clean -y \
41+
&& apt-get autoremove -y \
42+
&& rm -rf /tmp/* /var/tmp/* \
43+
&& rm -rf /var/lib/apt/lists/*
44+
45+
COPY root /
46+
VOLUME [ "/config" ]
47+
EXPOSE 3389
48+
ENTRYPOINT ["/init"]

Dockerfile.armhf

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# docker-baseimage-gui
2+
FROM lsiobase/ubuntu:arm32v7-bionic
3+
MAINTAINER Carlos Hernandez <carlos@techbyte.ca>
4+
5+
#########################################
6+
## ARGUMENTS ##
7+
#########################################
8+
ARG DEBIAN_FRONTEND=noninteractive
9+
ARG BUILD_DATE
10+
ARG VERSION
11+
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
12+
LABEL maintainer="HurricaneHrndz"
13+
14+
#########################################
15+
## INSTALL DEPENDENCIES ##
16+
#########################################
17+
RUN apt-get update \
18+
&& apt-get -y upgrade \
19+
&& apt-get install -qy --no-install-recommends \
20+
autocutsel \
21+
ca-certificates \
22+
curl \
23+
fuse \
24+
gawk \
25+
libfuse2 \
26+
libx11-dev \
27+
libxfixes3 \
28+
libxml2 \
29+
libxrandr2 \
30+
openbox \
31+
pulseaudio \
32+
x11-apps \
33+
x11-xserver-utils \
34+
xfonts-base \
35+
xorgxrdp \
36+
xrdp \
37+
xserver-xorg-core \
38+
xutils \
39+
zlib1g \
40+
&& apt-get clean -y \
41+
&& apt-get autoremove -y \
42+
&& rm -rf /tmp/* /var/tmp/* \
43+
&& rm -rf /var/lib/apt/lists/*
44+
45+
COPY root /
46+
VOLUME [ "/config" ]
47+
EXPOSE 3389
48+
ENTRYPOINT ["/init"]

0 commit comments

Comments
 (0)