-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
21 lines (16 loc) · 963 Bytes
/
Dockerfile
File metadata and controls
21 lines (16 loc) · 963 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
FROM debian:buster
LABEL maintainer="ZoiosNET<management@zoios.net>"
RUN echo "Prepare"
RUN dpkg --add-architecture i386
RUN apt-get update
RUN apt install -y apt-transport-https dirmngr gnupg ca-certificates curl
RUN echo "Setup NodeJS-Repository"
RUN curl -sL https://deb.nodesource.com/setup_15.x -o nodesource_setup.sh
RUN bash nodesource_setup.sh
RUN echo "Setup Mono-Repository"
RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
RUN echo "deb https://download.mono-project.com/repo/debian stable-buster main" | tee /etc/apt/sources.list.d/mono-official-stable.list
RUN echo "Install Components"
RUN apt-get update
RUN apt-get install -y nodejs libgtk-3.0 libgconf-2-4 libasound2 libxtst6 libxss1 libnss3 libgbm1 xvfb wine wine32 wine64 libwine libwine:i386 fonts-wine mono-complete build-essential chromium
RUN npm install electron angular-cli tsc electron-builder npm-run-all typescript -g