Skip to content

Commit

Permalink
remove npm install from dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon committed Aug 17, 2024
1 parent cccd641 commit d1444b0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion GuildWarsPartySearch.NodeJSServer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM alpine:3.20

WORKDIR /app

RUN apk update && apk add bash nodejs npm && npm install
RUN apk update && apk add bash nodejs npm

EXPOSE 80

Expand Down
2 changes: 1 addition & 1 deletion GuildWarsPartySearch.NodeJSServer/run.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash

npm run serve;
npm install && npm run serve;

0 comments on commit d1444b0

Please sign in to comment.