116 lines
3.9 KiB
Docker
116 lines
3.9 KiB
Docker
# Built with arch: amd64 flavor: lxde image: ubuntu:18.04
|
|
#
|
|
################################################################################
|
|
# base system
|
|
################################################################################
|
|
|
|
FROM ubuntu:18.04 as system
|
|
|
|
|
|
|
|
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 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/*
|
|
|
|
################################################################################
|
|
# certum crypto
|
|
################################################################################
|
|
|
|
RUN apt-get update && apt-get upgrade -y
|
|
|
|
RUN dpkg --configure -a
|
|
RUN apt-get install pcscd libusb-1.0-0-dev pcsc-tools unzip curl lshw wget -y
|
|
RUN dpkg --configure -a
|
|
|
|
RUN curl https://www.acs.com.hk/download-driver-unified/11929/ --output ACS-Unified-PKG-Lnx-118-P.zip
|
|
|
|
RUN unzip ACS-Unified-PKG-Lnx-118-P.zip
|
|
RUN apt install "ACS-Unified-PKG-Lnx-118-P/ubuntu/bionic/libacsccid1_1.1.8-1~ubuntu18.04.1_amd64.deb" -y
|
|
RUN apt install -f
|
|
|
|
RUN apt update --fix-missing && apt upgrade
|
|
|
|
RUN wget https://files.certum.eu/software/SimplySignDesktop/Linux-Ubuntu/2.9.6-8.2.1.1/SimplySignDesktop-2.9.6-8.2.1.1-x86_64-prod.bin
|
|
|
|
RUN chmod +x SimplySignDesktop-2.9.6-8.2.1.1-x86_64-prod.bin
|
|
|
|
################################################################################
|
|
# 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 build
|
|
RUN sed -i 's#app/locale/#novnc/app/locale/#' /src/web/dist/static/novnc/app/ui.js
|
|
|
|
|
|
|
|
################################################################################
|
|
# 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
|
|
|
|
|
|
|
|
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"]
|