Skip to content

Commit

Permalink
debugging install sys deps
Browse files Browse the repository at this point in the history
  • Loading branch information
phummelen committed Dec 24, 2024
1 parent 159cecf commit c9d738d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deployment/web-dev.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ RUN apk add --no-cache \

# Newer Node Version
RUN apk update && apk add ca-certificates curl gnupg
RUN mkdir -p /etc/apt/keyrings && curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg
RUN mkdir -p /etc/apk/keys && curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | apk add --no-cache --virtual apk-keyring && apk add --keyring /etc/apk/keys/nodesource.gpg http://deb.nodesource.com/node
ENV NODE_MAJOR=20
RUN echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_MAJOR.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list
#RUN echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_MAJOR.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list
RUN apk update && apk add nodejs

# configure, install and enable all php packages
Expand Down

0 comments on commit c9d738d

Please sign in to comment.