Changed npm commands to pnpm, updated node version in docker to LTS

This commit is contained in:
martin
2023-08-02 22:22:18 +02:00
parent 89d2935323
commit 32a141c7d3
3 changed files with 6 additions and 13 deletions

View File

@ -5,8 +5,7 @@ EXPOSE 443
FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build
# Install Node.js TODO use node 18?
RUN curl -fsSL https://deb.nodesource.com/setup_14.x | bash - \
RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash - \
&& apt-get install -y \
nodejs \
&& rm -rf /var/lib/apt/lists/*