From 88eb079b7bb25bd0127ad2acd12a9d46d898fa5f Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Sat, 9 Oct 2021 14:16:14 +0200 Subject: [PATCH] install sudo --- backend/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/backend/Dockerfile b/backend/Dockerfile index 468dde675..93e1a70c7 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -31,8 +31,8 @@ LABEL org.label-schema.schema-version="1.0" LABEL maintainer="support@gradido.net" # Install Additional Software -## install: git -#RUN apk --no-cache add git +## install: sudo +RUN apk --no-cache add sudo # Settings ## Expose Container Port @@ -64,7 +64,7 @@ FROM base as build COPY ./backend/ ./ # Also copy external enities from database COPY ./database/entity/ ../database/entity/ -RUN mount -o bind ./node_modules ../node_modules/ +RUN sudo mount -o bind ./node_modules ../node_modules/ # npm install RUN yarn install --production=false --frozen-lockfile --non-interactive