Skip to content

Commit

Permalink
Specify a port when running as a standalone service
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidCroftDKFZ committed Oct 28, 2024
1 parent 8ab08d1 commit be193e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile-standalone
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ FROM node:alpine
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm install
COPY frontend .
COPY . .

RUN npm run build

CMD npm run serve:standalone
CMD npm run serve:standalone -- --port 8096

0 comments on commit be193e8

Please sign in to comment.