Skip to content

Commit

Permalink
fix: Dockerfile creating app-info.json updated
Browse files Browse the repository at this point in the history
  • Loading branch information
ralfaron committed Apr 21, 2024
1 parent dbc61a8 commit b82597a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ WORKDIR /usr/src/app
COPY . .
# RUN apk add g++ make py3-pip
RUN npm install
RUN node create-app-info.js
RUN node --no-warnings --loader ts-node/esm create-app-info.ts
RUN npm run build

FROM node:lts-alpine3.19 as aasportal
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.aas-server
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ WORKDIR /usr/src/app
COPY . .
# RUN apk add g++ make py3-pip
RUN npm install
RUN node create-app-info.js
RUN node --no-warnings --loader ts-node/esm create-app-info.ts
RUN npm run aas-server:build

FROM node:lts-alpine3.19 as aas-server
Expand Down

0 comments on commit b82597a

Please sign in to comment.