Skip to content

Commit

Permalink
fix(webhook): dockerfile apt install
Browse files Browse the repository at this point in the history
  • Loading branch information
matmut7 committed Jan 29, 2024
1 parent 2fbbf75 commit 5df1f8b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/webhook/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@ ARG UBUNTU_VERSION=22.04
FROM ubuntu:$UBUNTU_VERSION as base

RUN apt-get update && \
apt-get install -y \
curl \
wget \
git \
DEBIAN_FRONTEND=noninteractive apt-get install -y \
curl \
wget \
git \
&& rm -rf /var/lib/apt/lists/*

# renovate: datasource=node depName=node versioning=node
ARG NODE_VERSION=20
ENV NODE_VERSION=$NODE_VERSION
RUN wget -qO- https://deb.nodesource.com/setup_${NODE_VERSION}.x | bash - \
&& apt-get install nodejs \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y nodejs \
&& npm install -g yarn \
&& rm -rf /var/lib/apt/lists/*

Expand Down

0 comments on commit 5df1f8b

Please sign in to comment.