aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile19
1 files changed, 0 insertions, 19 deletions
diff --git a/Dockerfile b/Dockerfile
deleted file mode 100644
index 03e9a17e..00000000
--- a/Dockerfile
+++ /dev/null
@@ -1,19 +0,0 @@
-FROM zenika/alpine-chrome:100-with-node
-
-USER root
-
-RUN apk add --no-cache msttcorefonts-installer fontconfig
-RUN update-ms-fonts
-RUN fc-cache -f && rm -rf /var/cache/*
-
-USER chrome
-
-COPY package*.json ./
-
-RUN npm install
-
-COPY . .
-ENV PUPPETEER_EXECUTABLE_PATH='/usr/bin/chromium-browser'
-
-EXPOSE 8080
-CMD [ "node", "server.js" ]