Skip to content

Commit

Permalink
clear npm cache
Browse files Browse the repository at this point in the history
  • Loading branch information
SturdyStubs committed Mar 29, 2024
1 parent 2c8cb48 commit f36338b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion games/carbon/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,12 @@ RUN dpkg --add-architecture i386 \
&& apt upgrade -y \
&& apt install -y lib32gcc-s1 lib32stdc++6 unzip curl iproute2 tzdata libgdiplus libsdl2-2.0-0:i386

# Clear cpm cache
RUN npm cache clean --force

# Install Node.js and npm with debugging output
RUN apt install -y nodejs \
RUN npm cache clean --force \
&& apt install -y nodejs \
&& mkdir /node_modules \
&& npm install --prefix / ws \
&& echo "Node.js installation completed successfully"
Expand Down

0 comments on commit f36338b

Please sign in to comment.