From 0f7285482c26508254d7731d126d7249c785a692 Mon Sep 17 00:00:00 2001 From: Khasim Syed Mohammed Date: Wed, 8 Aug 2018 19:59:26 +0530 Subject: [PATCH] Fix base image to add support for ARM While trying to build Rocket.chat for ARM64 we found the Fibers package missing. There is a prebuilt 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 : https://github.com/RocketChat/Docker.Official.Image/issues/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