Skip to content

Commit

Permalink
fix: Fix webhook deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
drorganvidez committed Oct 23, 2024
1 parent 7252e89 commit bc34218
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions docker/images/Dockerfile.webhook
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ RUN apt-get install -y --no-install-recommends ca-certificates gnupg lsb-release
&& apt-get update \
&& apt-get install -y --no-install-recommends docker-ce-cli

# Install Node.js and NPM
RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash - \
&& apt-get install -y --no-install-recommends nodejs \
&& npm install -g npm@latest

# Clean up
RUN apt-get clean \
&& rm -rf /var/lib/apt/lists/*
Expand Down

0 comments on commit bc34218

Please sign in to comment.