Skip to content

Commit

Permalink
Install npm in Docker explicitly
Browse files Browse the repository at this point in the history
The Docker builds have started failing because npm is no longer packaged
with node when installing them. This commit adds npm to the list of
packages to install.
  • Loading branch information
tienne-B committed Jun 17, 2023
1 parent fbfd8dd commit 67d7284
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ ENV IN_DOCKER 1
RUN apt-get update
RUN apt-get install -y curl nginx
RUN curl -sL https://deb.nodesource.com/setup_16.x | bash -
RUN apt-get install -y nodejs
RUN apt-get install -y nodejs npm

# Copy all our files into the baseimage and cd to that directory
RUN mkdir /tcd
Expand Down

0 comments on commit 67d7284

Please sign in to comment.