From 1302203b1c33bc54636b11b7a5ebebc896e5b721 Mon Sep 17 00:00:00 2001 From: Einhornimmond Date: Thu, 8 Jun 2023 18:57:00 +0200 Subject: [PATCH] try out new settings for building @iota/client --- backend/Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/backend/Dockerfile b/backend/Dockerfile index 910bdd504..24994568e 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -49,6 +49,9 @@ RUN mkdir -p /database ################################################################################## FROM base as development +# needed for building @iota/client, it is a rust based module +RUN apk add --no-cache rust cargo python + # We don't need to copy or build anything since we gonna bind to the # local filesystem which will need a rebuild anyway @@ -67,6 +70,9 @@ COPY ./backend/ ./ # Copy everything from database COPY ./database/ ../database/ +# needed for building @iota/client, it is a rust based module +RUN apk add --no-cache rust cargo python + # yarn install backend RUN yarn install --production=false --frozen-lockfile --non-interactive