From aa58f09f71538a2dc7cc5edcf2a0084f0734dad6 Mon Sep 17 00:00:00 2001 From: Khasim Syed Mohammed Date: Wed, 8 Aug 2018 20:08:15 +0530 Subject: [PATCH] Fix base image for ARM support While trying to build Rocket.chat for ARM64 we found the Fibers package missing. There is a pre-built Fibers package for x64, but it has to be built from source on arm64. However, the build fails with -slim node image from which some tools like python are missing. Therefore we request the Rocket.chat project switch to using the non slim version of node image. The issue was reported earlier here : RocketChat#48 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index fd205f8..05c68f0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:8.11-slim +FROM node:8.11 # crafted and tuned by pierre@ozoux.net and sing.li@rocket.chat MAINTAINER buildmaster@rocket.chat