aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorLibravatar Vijay A <avijayr@protonmail.com>2021-05-24 14:14:35 +0530
committerLibravatar Vijay Raghavan Aravamudhan <vraravam@users.noreply.github.com>2021-05-27 15:32:08 +0530
commitd882281f1e1bae1149f69c42ed7599aeb2596d1c (patch)
treecea8346b3e7d651bfb6bb5773c488ae7a3da1795 /Dockerfile
parentAdd installation via winget-cli to README.md (diff)
downloadferdium-app-d882281f1e1bae1149f69c42ed7599aeb2596d1c.tar.gz
ferdium-app-d882281f1e1bae1149f69c42ed7599aeb2596d1c.tar.zst
ferdium-app-d882281f1e1bae1149f69c42ed7599aeb2596d1c.zip
Use electronuserland base image so that we don't need to manually track all system deps (node, etc).
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile8
1 files changed, 1 insertions, 7 deletions
diff --git a/Dockerfile b/Dockerfile
index 7c25776e4..4f772c0da 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,10 +1,4 @@
1FROM node:14 as builder 1FROM electronuserland/builder:14 as builder
2
3RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
4 && apt-get -y install --no-install-recommends libx11-dev libxext-dev libxss-dev libxkbfile-dev rpm \
5 && apt-get autoremove -y \
6 && apt-get clean -y \
7 && rm -rf /var/lib/apt/lists/*
8 2
9WORKDIR /usr/src/ferdi 3WORKDIR /usr/src/ferdi
10 4