This repository was archived by the owner on Jun 30, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 20 files changed +1186
-0
lines changed
Expand file tree Collapse file tree 20 files changed +1186
-0
lines changed Original file line number Diff line number Diff line change 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" ]
Original file line number Diff line number Diff line change 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"]
Original file line number Diff line number Diff line change 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"]
You can’t perform that action at this time.
0 commit comments