-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a2bd78d
commit 406fa96
Showing
1 changed file
with
3 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,13 +12,14 @@ LABEL maintainer="[email protected]" | |
|
||
# 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 && \ | ||
|