From 76363fb115f5314cda21be823aea77adab286b01 Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Thu, 12 Jan 2023 16:04:47 +0100 Subject: [PATCH] docker file --- dht-node/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dht-node/Dockerfile b/dht-node/Dockerfile index bc1bcc0d1..6befd6e26 100644 --- a/dht-node/Dockerfile +++ b/dht-node/Dockerfile @@ -62,12 +62,12 @@ CMD /bin/sh -c "cd /database && yarn install && yarn build && cd /app && yarn in ################################################################################## FROM base as build -# Copy everything from backend -COPY ./backend/ ./ +# Copy everything from dht-node +COPY ./dht-node/ ./ # Copy everything from database COPY ./database/ ../database/ -# yarn install backend +# yarn install dht-node RUN yarn install --production=false --frozen-lockfile --non-interactive # yarn install database