Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for arm64 builds #170

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 23 additions & 4 deletions 5.0/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
FROM debian:buster-slim
FROM debian:bullseye

## Installing Node.js
ENV NODE_ENV production
ENV NODE_VERSION 14.19.3

# Node installation based on https://github.com/nodejs/docker-node/blob/66b46292a6e5dd5856b1d5204dc51547c80eb17a/12/buster-slim/Dockerfile
RUN ARCH="x64" \
RUN ARCH= && dpkgArch="$(dpkg --print-architecture)" \
&& case "${dpkgArch##*-}" in \
amd64) ARCH='x64';; \
arm64) ARCH='arm64';; \
*) echo "unsupported architecture"; exit 1 ;; \
esac \
&& set -eux \
&& apt-get update && apt-get install -y --no-install-recommends ca-certificates curl wget gnupg dirmngr xz-utils \
&& rm -rf /var/lib/apt/lists/* \
Expand Down Expand Up @@ -52,7 +57,13 @@ ENV RC_VERSION 5.0.1

WORKDIR /app

RUN set -eux \
RUN ARCH= && dpkgArch="$(dpkg --print-architecture)" \
&& case "${dpkgArch##*-}" in \
amd64) ARCH='x64';; \
arm64) ARCH='arm64';; \
*) echo "unsupported architecture"; exit 1 ;; \
esac \
&& set -eux \
&& apt-get update \
&& apt-get install -y --no-install-recommends fontconfig \
&& aptMark="$(apt-mark showmanual)" \
Expand All @@ -66,7 +77,15 @@ RUN set -eux \
&& tar zxf rocket.chat.tgz \
&& rm rocket.chat.tgz rocket.chat.tgz.asc \
&& cd bundle/programs/server \
&& npm install \
&& npm install --arch=${ARCH} --force \
&& cd npm/node_modules/sharp \
&& npm set unsafe-perm true \
&& npm install --arch=${ARCH} --force \
&& cd /app/bundle/programs/server/npm/node_modules/bcrypt \
&& npm install --arch=${ARCH} --force --build-from-source \
&& cd /app/bundle/programs/server/npm/node_modules/meteor/accounts-password/node_modules/bcrypt \
&& npm install --arch=${ARCH} --force --build-from-source \
&& cd /app/bundle/programs/server \
&& apt-mark auto '.*' > /dev/null \
&& apt-mark manual $aptMark > /dev/null \
&& find /usr/local -type f -executable -exec ldd '{}' ';' \
Expand Down