From 406fa96b11a9711ed3d369a4a807a4d8a8dba8d6 Mon Sep 17 00:00:00 2001 From: jwklijnsma Date: Tue, 19 Dec 2023 20:28:09 +0100 Subject: [PATCH] add . --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index cf17874..94db3b4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,13 +12,14 @@ LABEL maintainer="janwiebe@janwiebe.eu" # Install necessary packages RUN apt-get update -RUN apt-get install -y nodejs npm +RUN apt-get install -y nodejs npm wget COPY --from=build_node_modules /app /app # Move node_modules one directory up RUN mv /app/node_modules /node_modules - +WORKDIR /tmp +RUN wget https://packagecloud.io/install/repositories/crowdsec/crowdsec/script.deb.sh # Install necessary packages RUN bash /tmp/script.deb.sh RUN apt-get update && \