mirror of
https://github.com/fcwu/docker-ubuntu-vnc-desktop
synced 2025-12-08 01:15:38 +01:00
Removing files
This commit is contained in:
parent
40d10bdb10
commit
03f23a17b2
4 changed files with 179 additions and 433 deletions
|
|
@ -1 +0,0 @@
|
||||||
Dockerfile.amd64
|
|
||||||
179
Dockerfile
Normal file
179
Dockerfile
Normal file
|
|
@ -0,0 +1,179 @@
|
||||||
|
# Built with arch: amd64 flavor: lxde image: ubuntu:20.04
|
||||||
|
#
|
||||||
|
################################################################################
|
||||||
|
# base system
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
FROM ubuntu:20.04 as system
|
||||||
|
|
||||||
|
RUN sed -i 's#http://archive.ubuntu.com/ubuntu/#mirror://mirrors.ubuntu.com/mirrors.txt#' /etc/apt/sources.list;
|
||||||
|
|
||||||
|
# Ca-Certificates
|
||||||
|
RUN apt update \
|
||||||
|
&& apt install -y -o Dpkg::Options::='--force-confold' --no-install-recommends --allow-unauthenticated \
|
||||||
|
ca-certificates \
|
||||||
|
&& apt autoclean -y \
|
||||||
|
&& apt autoremove -y \
|
||||||
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
|
||||||
|
# built-in packages
|
||||||
|
ENV DEBIAN_FRONTEND noninteractive
|
||||||
|
RUN apt update \
|
||||||
|
&& apt install -y -o Dpkg::Options::='--force-confold' --no-install-recommends apt-utils software-properties-common curl \
|
||||||
|
apache2-utils man-db manpages-posix manpages-dev manpages-posix-dev \
|
||||||
|
&& apt update \
|
||||||
|
&& apt install -y -o Dpkg::Options::='--force-confold' --no-install-recommends --allow-unauthenticated \
|
||||||
|
supervisor nginx sudo net-tools zenity xz-utils \
|
||||||
|
dbus-x11 x11-utils alsa-utils \
|
||||||
|
mesa-utils libgl1-mesa-dri \
|
||||||
|
&& apt autoclean -y \
|
||||||
|
&& apt autoremove -y \
|
||||||
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
# install debs error if combine together
|
||||||
|
RUN apt update \
|
||||||
|
&& apt install -y -o Dpkg::Options::='--force-confold' --no-install-recommends --allow-unauthenticated \
|
||||||
|
xvfb x11vnc ttf-ubuntu-font-family ttf-wqy-zenhei \
|
||||||
|
&& apt autoclean -y \
|
||||||
|
&& apt autoremove -y \
|
||||||
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
#RUN apt update \
|
||||||
|
# && apt install -y gpg-agent \
|
||||||
|
# && curl -LO https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb \
|
||||||
|
# && (dpkg -i ./google-chrome-stable_current_amd64.deb || apt-get install -fy) \
|
||||||
|
# && curl -sSL https://dl.google.com/linux/linux_signing_key.pub | apt-key add \
|
||||||
|
# && rm google-chrome-stable_current_amd64.deb \
|
||||||
|
# && rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
# Install Desktop
|
||||||
|
RUN apt update \
|
||||||
|
&& apt install -y -o Dpkg::Options::='--force-confold' --no-install-recommends --allow-unauthenticated \
|
||||||
|
xubuntu-desktop gtk2-engines-murrine gnome-themes-standard gtk2-engines-pixbuf gtk2-engines-murrine arc-theme \
|
||||||
|
&& apt autoclean -y \
|
||||||
|
&& apt autoremove -y \
|
||||||
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
# tini service manager
|
||||||
|
ARG TINI_VERSION=v0.18.0
|
||||||
|
ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini /bin/tini
|
||||||
|
RUN chmod +x /bin/tini
|
||||||
|
|
||||||
|
# ffmpeg
|
||||||
|
RUN apt update \
|
||||||
|
&& apt install -y -o Dpkg::Options::='--force-confold' --no-install-recommends --allow-unauthenticated \
|
||||||
|
ffmpeg \
|
||||||
|
&& rm -rf /var/lib/apt/lists/* \
|
||||||
|
&& mkdir /usr/local/ffmpeg \
|
||||||
|
&& ln -s /usr/bin/ffmpeg /usr/local/ffmpeg/ffmpeg
|
||||||
|
|
||||||
|
# python library
|
||||||
|
COPY rootfs/usr/local/lib/web/backend/requirements.txt /tmp/
|
||||||
|
RUN apt-get update \
|
||||||
|
&& dpkg-query -W -f='${Package}\n' > /tmp/a.txt \
|
||||||
|
&& apt-get install -y python3-pip python3-dev build-essential \
|
||||||
|
&& pip3 install setuptools wheel && pip3 install -r /tmp/requirements.txt \
|
||||||
|
&& ln -s /usr/bin/python3 /usr/local/bin/python \
|
||||||
|
&& dpkg-query -W -f='${Package}\n' > /tmp/b.txt \
|
||||||
|
&& apt-get remove -y `diff --changed-group-format='%>' --unchanged-group-format='' /tmp/a.txt /tmp/b.txt | xargs` \
|
||||||
|
&& apt-get autoclean -y \
|
||||||
|
&& apt-get autoremove -y \
|
||||||
|
&& rm -rf /var/lib/apt/lists/* \
|
||||||
|
&& rm -rf /var/cache/apt/* /tmp/a.txt /tmp/b.txt
|
||||||
|
|
||||||
|
# Install Additonal Packages
|
||||||
|
RUN mkdir /cloud9
|
||||||
|
COPY rootfs/cloud9/apt-requirements.txt /cloud9/apt-requirements.txt
|
||||||
|
RUN apt update \
|
||||||
|
&& grep -v '^#' /cloud9/apt-requirements.txt | xargs apt install -y -o Dpkg::Options::='--force-confold' --no-install-recommends --allow-unauthenticated \
|
||||||
|
&& apt autoclean -y \
|
||||||
|
&& apt autoremove -y \
|
||||||
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
RUN mkdir /workspace
|
||||||
|
|
||||||
|
# Clone and install cloud9
|
||||||
|
RUN git clone https://github.com/c9/core.git /cloud9/c9sdk
|
||||||
|
#RUN mkdir -p /cloud9/c9sdk/build /workspace/.ubuntu/.standalone
|
||||||
|
#RUN ln -sf /workspace/.ubuntu/.standalone /cloud9/c9sdk/build/standalone
|
||||||
|
RUN /cloud9/c9sdk/scripts/install-sdk.sh
|
||||||
|
RUN cd /cloud9/c9sdk && git reset --hard
|
||||||
|
RUN wget -O user-install.sh https://raw.githubusercontent.com/c9/install/master/install.sh && mv user-install.sh /cloud9/
|
||||||
|
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
# builder
|
||||||
|
################################################################################
|
||||||
|
FROM ubuntu:20.04 as builder
|
||||||
|
|
||||||
|
|
||||||
|
RUN sed -i 's#http://archive.ubuntu.com/ubuntu/#mirror://mirrors.ubuntu.com/mirrors.txt#' /etc/apt/sources.list;
|
||||||
|
|
||||||
|
|
||||||
|
RUN apt-get update \
|
||||||
|
&& apt-get install -y --no-install-recommends curl ca-certificates gnupg patch
|
||||||
|
|
||||||
|
# nodejs
|
||||||
|
RUN curl -sL https://deb.nodesource.com/setup_12.x | bash - \
|
||||||
|
&& apt-get install -y nodejs
|
||||||
|
|
||||||
|
# yarn
|
||||||
|
RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \
|
||||||
|
&& echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \
|
||||||
|
&& apt-get update \
|
||||||
|
&& apt-get install -y yarn
|
||||||
|
|
||||||
|
# build frontend
|
||||||
|
COPY web /src/web
|
||||||
|
RUN cd /src/web \
|
||||||
|
&& yarn \
|
||||||
|
&& yarn build
|
||||||
|
RUN sed -i 's#app/locale/#novnc/app/locale/#' /src/web/dist/static/novnc/app/ui.js
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
# merge
|
||||||
|
################################################################################
|
||||||
|
FROM system
|
||||||
|
LABEL maintainer="info@devindice.com"
|
||||||
|
|
||||||
|
COPY --from=builder /src/web/dist/ /usr/local/lib/web/frontend/
|
||||||
|
|
||||||
|
RUN ln -sf /usr/local/lib/web/frontend/static/websockify /usr/local/lib/web/frontend/static/novnc/utils/websockify && \
|
||||||
|
chmod +x /usr/local/lib/web/frontend/static/websockify/run
|
||||||
|
|
||||||
|
EXPOSE 80
|
||||||
|
EXPOSE 9999
|
||||||
|
|
||||||
|
WORKDIR /workspace
|
||||||
|
ENV HOME=/home/ubuntu \
|
||||||
|
SHELL=/bin/bash
|
||||||
|
HEALTHCHECK --interval=30s --timeout=5s CMD curl --fail http://127.0.0.1:6079/api/health
|
||||||
|
ENTRYPOINT ["/startup.sh"]
|
||||||
|
|
||||||
|
# Install Docker
|
||||||
|
RUN groupadd -g 281 docker
|
||||||
|
RUN mkdir -p /etc/apt/keyrings
|
||||||
|
RUN curl -fsSL https://download.docker.com/linux/ubuntu/gpg | gpg --dearmor -o /etc/apt/keyrings/docker.gpg
|
||||||
|
RUN echo \
|
||||||
|
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu \
|
||||||
|
$(lsb_release -cs) stable" | tee /etc/apt/sources.list.d/docker.list > /dev/null
|
||||||
|
RUN apt-get update
|
||||||
|
RUN apt-get -y install nautilus menulibre python3-pip keychain python3.8-venv strace gedit gvfs-backends
|
||||||
|
RUN apt-get -y install docker-ce docker-ce-cli containerd.io docker-compose-plugin
|
||||||
|
|
||||||
|
RUN wget -O beyond-compare.deb https://www.scootersoftware.com/$(curl -sd "platform=linux" https://www.scootersoftware.com/download.php | grep amd64.deb | awk -F\" '{print $2}' | sed 's/\///g')
|
||||||
|
RUN wget -O sublime-text.deb $(curl -s https://www.sublimetext.com/download_thanks?target=x64-deb#direct-downloads | grep amd64.deb | grep url | awk -F'"' '{print $2}')
|
||||||
|
RUN wget -O sublime-merge.deb $(curl -s https://www.sublimemerge.com/download_thanks?target=x64-deb#direct-downloads | grep amd64.deb | grep url | awk -F'"' '{print $2}')
|
||||||
|
RUN wget -O chrome.deb wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb || true
|
||||||
|
RUN apt install -y ./beyond-compare.deb ./sublime-text.deb ./sublime-merge.deb ./chrome.deb
|
||||||
|
|
||||||
|
RUN npm -g install sass yuglify
|
||||||
|
|
||||||
|
RUN apt -y remove thunar
|
||||||
|
|
||||||
|
# Copy files
|
||||||
|
COPY rootfs /
|
||||||
|
RUN rm -rf /workspace/*
|
||||||
179
Dockerfile.amd64
179
Dockerfile.amd64
|
|
@ -1,179 +0,0 @@
|
||||||
# Built with arch: amd64 flavor: lxde image: ubuntu:20.04
|
|
||||||
#
|
|
||||||
################################################################################
|
|
||||||
# base system
|
|
||||||
################################################################################
|
|
||||||
|
|
||||||
FROM ubuntu:20.04 as system
|
|
||||||
|
|
||||||
RUN sed -i 's#http://archive.ubuntu.com/ubuntu/#mirror://mirrors.ubuntu.com/mirrors.txt#' /etc/apt/sources.list;
|
|
||||||
|
|
||||||
# Ca-Certificates
|
|
||||||
RUN apt update \
|
|
||||||
&& apt install -y -o Dpkg::Options::='--force-confold' --no-install-recommends --allow-unauthenticated \
|
|
||||||
ca-certificates \
|
|
||||||
&& apt autoclean -y \
|
|
||||||
&& apt autoremove -y \
|
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
|
||||||
|
|
||||||
|
|
||||||
# built-in packages
|
|
||||||
ENV DEBIAN_FRONTEND noninteractive
|
|
||||||
RUN apt update \
|
|
||||||
&& apt install -y -o Dpkg::Options::='--force-confold' --no-install-recommends apt-utils software-properties-common curl \
|
|
||||||
apache2-utils man-db manpages-posix manpages-dev manpages-posix-dev \
|
|
||||||
&& apt update \
|
|
||||||
&& apt install -y -o Dpkg::Options::='--force-confold' --no-install-recommends --allow-unauthenticated \
|
|
||||||
supervisor nginx sudo net-tools zenity xz-utils \
|
|
||||||
dbus-x11 x11-utils alsa-utils \
|
|
||||||
mesa-utils libgl1-mesa-dri \
|
|
||||||
&& apt autoclean -y \
|
|
||||||
&& apt autoremove -y \
|
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
|
||||||
|
|
||||||
# install debs error if combine together
|
|
||||||
RUN apt update \
|
|
||||||
&& apt install -y -o Dpkg::Options::='--force-confold' --no-install-recommends --allow-unauthenticated \
|
|
||||||
xvfb x11vnc ttf-ubuntu-font-family ttf-wqy-zenhei \
|
|
||||||
&& apt autoclean -y \
|
|
||||||
&& apt autoremove -y \
|
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
|
||||||
|
|
||||||
#RUN apt update \
|
|
||||||
# && apt install -y gpg-agent \
|
|
||||||
# && curl -LO https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb \
|
|
||||||
# && (dpkg -i ./google-chrome-stable_current_amd64.deb || apt-get install -fy) \
|
|
||||||
# && curl -sSL https://dl.google.com/linux/linux_signing_key.pub | apt-key add \
|
|
||||||
# && rm google-chrome-stable_current_amd64.deb \
|
|
||||||
# && rm -rf /var/lib/apt/lists/*
|
|
||||||
|
|
||||||
# Install Desktop
|
|
||||||
RUN apt update \
|
|
||||||
&& apt install -y -o Dpkg::Options::='--force-confold' --no-install-recommends --allow-unauthenticated \
|
|
||||||
xubuntu-desktop gtk2-engines-murrine gnome-themes-standard gtk2-engines-pixbuf gtk2-engines-murrine arc-theme \
|
|
||||||
&& apt autoclean -y \
|
|
||||||
&& apt autoremove -y \
|
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
|
||||||
|
|
||||||
# tini service manager
|
|
||||||
ARG TINI_VERSION=v0.18.0
|
|
||||||
ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini /bin/tini
|
|
||||||
RUN chmod +x /bin/tini
|
|
||||||
|
|
||||||
# ffmpeg
|
|
||||||
RUN apt update \
|
|
||||||
&& apt install -y -o Dpkg::Options::='--force-confold' --no-install-recommends --allow-unauthenticated \
|
|
||||||
ffmpeg \
|
|
||||||
&& rm -rf /var/lib/apt/lists/* \
|
|
||||||
&& mkdir /usr/local/ffmpeg \
|
|
||||||
&& ln -s /usr/bin/ffmpeg /usr/local/ffmpeg/ffmpeg
|
|
||||||
|
|
||||||
# python library
|
|
||||||
COPY rootfs/usr/local/lib/web/backend/requirements.txt /tmp/
|
|
||||||
RUN apt-get update \
|
|
||||||
&& dpkg-query -W -f='${Package}\n' > /tmp/a.txt \
|
|
||||||
&& apt-get install -y python3-pip python3-dev build-essential \
|
|
||||||
&& pip3 install setuptools wheel && pip3 install -r /tmp/requirements.txt \
|
|
||||||
&& ln -s /usr/bin/python3 /usr/local/bin/python \
|
|
||||||
&& dpkg-query -W -f='${Package}\n' > /tmp/b.txt \
|
|
||||||
&& apt-get remove -y `diff --changed-group-format='%>' --unchanged-group-format='' /tmp/a.txt /tmp/b.txt | xargs` \
|
|
||||||
&& apt-get autoclean -y \
|
|
||||||
&& apt-get autoremove -y \
|
|
||||||
&& rm -rf /var/lib/apt/lists/* \
|
|
||||||
&& rm -rf /var/cache/apt/* /tmp/a.txt /tmp/b.txt
|
|
||||||
|
|
||||||
# Install Additonal Packages
|
|
||||||
RUN mkdir /cloud9
|
|
||||||
COPY rootfs/cloud9/apt-requirements.txt /cloud9/apt-requirements.txt
|
|
||||||
RUN apt update \
|
|
||||||
&& grep -v '^#' /cloud9/apt-requirements.txt | xargs apt install -y -o Dpkg::Options::='--force-confold' --no-install-recommends --allow-unauthenticated \
|
|
||||||
&& apt autoclean -y \
|
|
||||||
&& apt autoremove -y \
|
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
|
||||||
|
|
||||||
RUN mkdir /workspace
|
|
||||||
|
|
||||||
# Clone and install cloud9
|
|
||||||
RUN git clone https://github.com/c9/core.git /cloud9/c9sdk
|
|
||||||
#RUN mkdir -p /cloud9/c9sdk/build /workspace/.ubuntu/.standalone
|
|
||||||
#RUN ln -sf /workspace/.ubuntu/.standalone /cloud9/c9sdk/build/standalone
|
|
||||||
RUN /cloud9/c9sdk/scripts/install-sdk.sh
|
|
||||||
RUN cd /cloud9/c9sdk && git reset --hard
|
|
||||||
RUN wget -O user-install.sh https://raw.githubusercontent.com/c9/install/master/install.sh && mv user-install.sh /cloud9/
|
|
||||||
|
|
||||||
|
|
||||||
################################################################################
|
|
||||||
# builder
|
|
||||||
################################################################################
|
|
||||||
FROM ubuntu:20.04 as builder
|
|
||||||
|
|
||||||
|
|
||||||
RUN sed -i 's#http://archive.ubuntu.com/ubuntu/#mirror://mirrors.ubuntu.com/mirrors.txt#' /etc/apt/sources.list;
|
|
||||||
|
|
||||||
|
|
||||||
RUN apt-get update \
|
|
||||||
&& apt-get install -y --no-install-recommends curl ca-certificates gnupg patch
|
|
||||||
|
|
||||||
# nodejs
|
|
||||||
RUN curl -sL https://deb.nodesource.com/setup_12.x | bash - \
|
|
||||||
&& apt-get install -y nodejs
|
|
||||||
|
|
||||||
# yarn
|
|
||||||
RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \
|
|
||||||
&& echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \
|
|
||||||
&& apt-get update \
|
|
||||||
&& apt-get install -y yarn
|
|
||||||
|
|
||||||
# build frontend
|
|
||||||
COPY web /src/web
|
|
||||||
RUN cd /src/web \
|
|
||||||
&& yarn \
|
|
||||||
&& yarn build
|
|
||||||
RUN sed -i 's#app/locale/#novnc/app/locale/#' /src/web/dist/static/novnc/app/ui.js
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
################################################################################
|
|
||||||
# merge
|
|
||||||
################################################################################
|
|
||||||
FROM system
|
|
||||||
LABEL maintainer="info@devindice.com"
|
|
||||||
|
|
||||||
COPY --from=builder /src/web/dist/ /usr/local/lib/web/frontend/
|
|
||||||
|
|
||||||
RUN ln -sf /usr/local/lib/web/frontend/static/websockify /usr/local/lib/web/frontend/static/novnc/utils/websockify && \
|
|
||||||
chmod +x /usr/local/lib/web/frontend/static/websockify/run
|
|
||||||
|
|
||||||
EXPOSE 80
|
|
||||||
EXPOSE 9999
|
|
||||||
|
|
||||||
WORKDIR /workspace
|
|
||||||
ENV HOME=/home/ubuntu \
|
|
||||||
SHELL=/bin/bash
|
|
||||||
HEALTHCHECK --interval=30s --timeout=5s CMD curl --fail http://127.0.0.1:6079/api/health
|
|
||||||
ENTRYPOINT ["/startup.sh"]
|
|
||||||
|
|
||||||
# Install Docker
|
|
||||||
RUN groupadd -g 281 docker
|
|
||||||
RUN mkdir -p /etc/apt/keyrings
|
|
||||||
RUN curl -fsSL https://download.docker.com/linux/ubuntu/gpg | gpg --dearmor -o /etc/apt/keyrings/docker.gpg
|
|
||||||
RUN echo \
|
|
||||||
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu \
|
|
||||||
$(lsb_release -cs) stable" | tee /etc/apt/sources.list.d/docker.list > /dev/null
|
|
||||||
RUN apt-get update
|
|
||||||
RUN apt-get -y install nautilus menulibre python3-pip keychain python3.8-venv strace gedit gvfs-backends
|
|
||||||
RUN apt-get -y install docker-ce docker-ce-cli containerd.io docker-compose-plugin
|
|
||||||
|
|
||||||
RUN wget -O beyond-compare.deb https://www.scootersoftware.com/$(curl -sd "platform=linux" https://www.scootersoftware.com/download.php | grep amd64.deb | awk -F\" '{print $2}' | sed 's/\///g')
|
|
||||||
RUN wget -O sublime-text.deb $(curl -s https://www.sublimetext.com/download_thanks?target=x64-deb#direct-downloads | grep amd64.deb | grep url | awk -F'"' '{print $2}')
|
|
||||||
RUN wget -O sublime-merge.deb $(curl -s https://www.sublimemerge.com/download_thanks?target=x64-deb#direct-downloads | grep amd64.deb | grep url | awk -F'"' '{print $2}')
|
|
||||||
RUN wget -O chrome.deb wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb || true
|
|
||||||
RUN apt install -y ./beyond-compare.deb ./sublime-text.deb ./sublime-merge.deb ./chrome.deb
|
|
||||||
|
|
||||||
RUN npm -g install sass yuglify
|
|
||||||
|
|
||||||
RUN apt -y remove thunar
|
|
||||||
|
|
||||||
# Copy files
|
|
||||||
COPY rootfs /
|
|
||||||
RUN rm -rf /workspace/*
|
|
||||||
129
Dockerfile.arm64
129
Dockerfile.arm64
|
|
@ -1,129 +0,0 @@
|
||||||
# Built with arch: arm64 flavor: lxde image: ubuntu:18.04
|
|
||||||
#
|
|
||||||
################################################################################
|
|
||||||
# base system
|
|
||||||
################################################################################
|
|
||||||
|
|
||||||
# qemu helper for arm build
|
|
||||||
FROM ubuntu:20.04 as amd64
|
|
||||||
RUN apt update && apt install -y qemu-user-static
|
|
||||||
FROM arm64v8/ubuntu:20.04 as system
|
|
||||||
COPY --from=amd64 /usr/bin/qemu-aarch64-static /usr/bin/
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
RUN sed -i 's#http://archive.ubuntu.com/ubuntu/#mirror://mirrors.ubuntu.com/mirrors.txt#' /etc/apt/sources.list;
|
|
||||||
|
|
||||||
|
|
||||||
# built-in packages
|
|
||||||
ENV DEBIAN_FRONTEND noninteractive
|
|
||||||
RUN apt update \
|
|
||||||
&& apt install -y --no-install-recommends software-properties-common curl apache2-utils \
|
|
||||||
&& apt update \
|
|
||||||
&& apt install -y --no-install-recommends --allow-unauthenticated \
|
|
||||||
supervisor nginx sudo net-tools zenity xz-utils \
|
|
||||||
dbus-x11 x11-utils alsa-utils \
|
|
||||||
mesa-utils libgl1-mesa-dri \
|
|
||||||
&& apt autoclean -y \
|
|
||||||
&& apt autoremove -y \
|
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
|
||||||
# install debs error if combine together
|
|
||||||
RUN apt update \
|
|
||||||
&& apt install -y --no-install-recommends --allow-unauthenticated \
|
|
||||||
xvfb x11vnc \
|
|
||||||
vim-tiny firefox chromium-browser ttf-ubuntu-font-family ttf-wqy-zenhei \
|
|
||||||
&& add-apt-repository -r ppa:fcwu-tw/apps \
|
|
||||||
&& apt autoclean -y \
|
|
||||||
&& apt autoremove -y \
|
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
|
||||||
|
|
||||||
RUN apt update \
|
|
||||||
&& apt install -y --no-install-recommends --allow-unauthenticated \
|
|
||||||
lxde gtk2-engines-murrine gnome-themes-standard gtk2-engines-pixbuf gtk2-engines-murrine arc-theme \
|
|
||||||
&& apt autoclean -y \
|
|
||||||
&& apt autoremove -y \
|
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
|
||||||
|
|
||||||
|
|
||||||
# Additional packages require ~600MB
|
|
||||||
# libreoffice pinta language-pack-zh-hant language-pack-gnome-zh-hant firefox-locale-zh-hant libreoffice-l10n-zh-tw
|
|
||||||
|
|
||||||
# tini for subreap
|
|
||||||
ARG TINI_VERSION=v0.18.0
|
|
||||||
ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini-arm64 /bin/tini
|
|
||||||
RUN chmod +x /bin/tini
|
|
||||||
|
|
||||||
# ffmpeg
|
|
||||||
RUN apt update \
|
|
||||||
&& apt install -y --no-install-recommends --allow-unauthenticated \
|
|
||||||
ffmpeg \
|
|
||||||
&& rm -rf /var/lib/apt/lists/* \
|
|
||||||
&& mkdir /usr/local/ffmpeg \
|
|
||||||
&& ln -s /usr/bin/ffmpeg /usr/local/ffmpeg/ffmpeg
|
|
||||||
|
|
||||||
# python library
|
|
||||||
COPY rootfs/usr/local/lib/web/backend/requirements.txt /tmp/
|
|
||||||
RUN apt-get update \
|
|
||||||
&& dpkg-query -W -f='${Package}\n' > /tmp/a.txt \
|
|
||||||
&& apt-get install -y python3-pip python3-dev build-essential \
|
|
||||||
&& pip3 install setuptools wheel && pip3 install -r /tmp/requirements.txt \
|
|
||||||
&& ln -s /usr/bin/python3 /usr/local/bin/python \
|
|
||||||
&& dpkg-query -W -f='${Package}\n' > /tmp/b.txt \
|
|
||||||
&& apt-get remove -y `diff --changed-group-format='%>' --unchanged-group-format='' /tmp/a.txt /tmp/b.txt | xargs` \
|
|
||||||
&& apt-get autoclean -y \
|
|
||||||
&& apt-get autoremove -y \
|
|
||||||
&& rm -rf /var/lib/apt/lists/* \
|
|
||||||
&& rm -rf /var/cache/apt/* /tmp/a.txt /tmp/b.txt
|
|
||||||
|
|
||||||
|
|
||||||
################################################################################
|
|
||||||
# builder
|
|
||||||
################################################################################
|
|
||||||
FROM ubuntu:20.04 as builder
|
|
||||||
|
|
||||||
|
|
||||||
RUN sed -i 's#http://archive.ubuntu.com/ubuntu/#mirror://mirrors.ubuntu.com/mirrors.txt#' /etc/apt/sources.list;
|
|
||||||
|
|
||||||
|
|
||||||
RUN apt-get update \
|
|
||||||
&& apt-get install -y --no-install-recommends curl ca-certificates gnupg patch
|
|
||||||
|
|
||||||
# nodejs
|
|
||||||
RUN curl -sL https://deb.nodesource.com/setup_12.x | bash - \
|
|
||||||
&& apt-get install -y nodejs
|
|
||||||
|
|
||||||
# yarn
|
|
||||||
RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \
|
|
||||||
&& echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \
|
|
||||||
&& apt-get update \
|
|
||||||
&& apt-get install -y yarn
|
|
||||||
|
|
||||||
# build frontend
|
|
||||||
COPY web /src/web
|
|
||||||
RUN cd /src/web \
|
|
||||||
&& yarn \
|
|
||||||
&& yarn build
|
|
||||||
RUN sed -i 's#app/locale/#novnc/app/locale/#' /src/web/dist/static/novnc/app/ui.js
|
|
||||||
|
|
||||||
|
|
||||||
RUN cd /src/web/dist/static/novnc && patch -p0 < /src/web/novnc-armhf-1.patch
|
|
||||||
|
|
||||||
|
|
||||||
################################################################################
|
|
||||||
# merge
|
|
||||||
################################################################################
|
|
||||||
FROM system
|
|
||||||
LABEL maintainer="fcwu.tw@gmail.com"
|
|
||||||
|
|
||||||
COPY --from=builder /src/web/dist/ /usr/local/lib/web/frontend/
|
|
||||||
COPY rootfs /
|
|
||||||
RUN ln -sf /usr/local/lib/web/frontend/static/websockify" "/usr/local/lib/web/frontend/static/novnc/utils/websockify && chmod +x /usr/local/lib/web/frontend/static/websockify/run
|
|
||||||
RUN ln -sf /usr/local/lib/web/frontend/static/websockify /usr/local/lib/web/frontend/static/novnc/utils/websockify && \
|
|
||||||
chmod +x /usr/local/lib/web/frontend/static/websockify/run
|
|
||||||
|
|
||||||
EXPOSE 80
|
|
||||||
WORKDIR /root
|
|
||||||
ENV HOME=/home/ubuntu \
|
|
||||||
SHELL=/bin/bash
|
|
||||||
HEALTHCHECK --interval=30s --timeout=5s CMD curl --fail http://127.0.0.1:6079/api/health
|
|
||||||
ENTRYPOINT ["/startup.sh"]
|
|
||||||
124
Dockerfile.armhf
124
Dockerfile.armhf
|
|
@ -1,124 +0,0 @@
|
||||||
# Built with arch: armhf flavor: lxde image: ubuntu:18.04
|
|
||||||
#
|
|
||||||
################################################################################
|
|
||||||
# base system
|
|
||||||
################################################################################
|
|
||||||
|
|
||||||
# qemu helper for arm build
|
|
||||||
FROM ubuntu:18.04 as amd64
|
|
||||||
RUN apt update && apt install -y qemu-user-static
|
|
||||||
FROM arm32v7/ubuntu:18.04 as system
|
|
||||||
COPY --from=amd64 /usr/bin/qemu-arm-static /usr/bin/
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
RUN sed -i 's#http://archive.ubuntu.com/ubuntu/#mirror://mirrors.ubuntu.com/mirrors.txt#' /etc/apt/sources.list;
|
|
||||||
|
|
||||||
|
|
||||||
# built-in packages
|
|
||||||
ENV DEBIAN_FRONTEND noninteractive
|
|
||||||
RUN apt update \
|
|
||||||
&& apt install -y --no-install-recommends software-properties-common curl apache2-utils \
|
|
||||||
&& apt update \
|
|
||||||
&& apt install -y --no-install-recommends --allow-unauthenticated \
|
|
||||||
supervisor nginx sudo net-tools zenity xz-utils \
|
|
||||||
dbus-x11 x11-utils alsa-utils \
|
|
||||||
mesa-utils libgl1-mesa-dri \
|
|
||||||
&& apt autoclean -y \
|
|
||||||
&& apt autoremove -y \
|
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
|
||||||
# install debs error if combine together
|
|
||||||
RUN add-apt-repository -y ppa:fcwu-tw/apps \
|
|
||||||
&& apt update \
|
|
||||||
&& apt install -y --no-install-recommends --allow-unauthenticated \
|
|
||||||
xvfb x11vnc=0.9.16-1 \
|
|
||||||
vim-tiny firefox chromium-browser ttf-ubuntu-font-family ttf-wqy-zenhei \
|
|
||||||
&& add-apt-repository -r ppa:fcwu-tw/apps \
|
|
||||||
&& apt autoclean -y \
|
|
||||||
&& apt autoremove -y \
|
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
|
||||||
|
|
||||||
RUN apt update \
|
|
||||||
&& apt install -y --no-install-recommends --allow-unauthenticated \
|
|
||||||
lxde gtk2-engines-murrine gnome-themes-standard gtk2-engines-pixbuf gtk2-engines-murrine arc-theme \
|
|
||||||
&& apt autoclean -y \
|
|
||||||
&& apt autoremove -y \
|
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
|
||||||
|
|
||||||
|
|
||||||
# Additional packages require ~600MB
|
|
||||||
# libreoffice pinta language-pack-zh-hant language-pack-gnome-zh-hant firefox-locale-zh-hant libreoffice-l10n-zh-tw
|
|
||||||
|
|
||||||
# tini for subreap
|
|
||||||
ARG TINI_VERSION=v0.18.0
|
|
||||||
ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini-armhf /bin/tini
|
|
||||||
RUN chmod +x /bin/tini
|
|
||||||
|
|
||||||
# ffmpeg
|
|
||||||
RUN mkdir -p /usr/local/ffmpeg \
|
|
||||||
&& curl -sSL https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-amd64-static.tar.xz | tar xJvf - -C /usr/local/ffmpeg/ --strip 1
|
|
||||||
|
|
||||||
# python library
|
|
||||||
COPY rootfs/usr/local/lib/web/backend/requirements.txt /tmp/
|
|
||||||
RUN apt-get update \
|
|
||||||
&& dpkg-query -W -f='${Package}\n' > /tmp/a.txt \
|
|
||||||
&& apt-get install -y python-pip python-dev build-essential \
|
|
||||||
&& pip install setuptools wheel && pip install -r /tmp/requirements.txt \
|
|
||||||
&& dpkg-query -W -f='${Package}\n' > /tmp/b.txt \
|
|
||||||
&& apt-get remove -y `diff --changed-group-format='%>' --unchanged-group-format='' /tmp/a.txt /tmp/b.txt | xargs` \
|
|
||||||
&& apt-get autoclean -y \
|
|
||||||
&& apt-get autoremove -y \
|
|
||||||
&& rm -rf /var/lib/apt/lists/* \
|
|
||||||
&& rm -rf /var/cache/apt/* /tmp/a.txt /tmp/b.txt
|
|
||||||
|
|
||||||
|
|
||||||
################################################################################
|
|
||||||
# builder
|
|
||||||
################################################################################
|
|
||||||
FROM ubuntu:18.04 as builder
|
|
||||||
|
|
||||||
|
|
||||||
RUN sed -i 's#http://archive.ubuntu.com/ubuntu/#mirror://mirrors.ubuntu.com/mirrors.txt#' /etc/apt/sources.list;
|
|
||||||
|
|
||||||
|
|
||||||
RUN apt-get update \
|
|
||||||
&& apt-get install -y --no-install-recommends curl ca-certificates gnupg patch
|
|
||||||
|
|
||||||
# nodejs
|
|
||||||
RUN curl -sL https://deb.nodesource.com/setup_12.x | bash - \
|
|
||||||
&& apt-get install -y nodejs
|
|
||||||
|
|
||||||
# yarn
|
|
||||||
RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \
|
|
||||||
&& echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \
|
|
||||||
&& apt-get update \
|
|
||||||
&& apt-get install -y yarn
|
|
||||||
|
|
||||||
# build frontend
|
|
||||||
COPY web /src/web
|
|
||||||
RUN cd /src/web \
|
|
||||||
&& yarn \
|
|
||||||
&& yarn run build
|
|
||||||
RUN sed -i 's#app/locale/#novnc/app/locale/#' /src/web/dist/static/novnc/app/ui.js
|
|
||||||
|
|
||||||
RUN cd /src/web/dist/static/novnc && patch -p0 < /src/web/novnc-armhf-1.patch
|
|
||||||
|
|
||||||
|
|
||||||
################################################################################
|
|
||||||
# merge
|
|
||||||
################################################################################
|
|
||||||
FROM system
|
|
||||||
LABEL maintainer="fcwu.tw@gmail.com"
|
|
||||||
|
|
||||||
COPY --from=builder /src/web/dist/ /usr/local/lib/web/frontend/
|
|
||||||
COPY rootfs /
|
|
||||||
RUN ln -sf /usr/local/lib/web/frontend/static/websockify" "/usr/local/lib/web/frontend/static/novnc/utils/websockify && chmod +x /usr/local/lib/web/frontend/static/websockify/run
|
|
||||||
RUN ln -sf /usr/local/lib/web/frontend/static/websockify /usr/local/lib/web/frontend/static/novnc/utils/websockify && \
|
|
||||||
chmod +x /usr/local/lib/web/frontend/static/websockify/run
|
|
||||||
|
|
||||||
EXPOSE 80
|
|
||||||
WORKDIR /root
|
|
||||||
ENV HOME=/home/ubuntu \
|
|
||||||
SHELL=/bin/bash
|
|
||||||
HEALTHCHECK --interval=30s --timeout=5s CMD curl --fail http://127.0.0.1:6079/api/health
|
|
||||||
ENTRYPOINT ["/startup.sh"]
|
|
||||||
Loading…
Reference in a new issue