Skip to content

Commit

Permalink
Merge pull request #149 from EYBlockchain/fabio/fix-babel
Browse files Browse the repository at this point in the history
Revert to npm i in Dockerfile to run babel
  • Loading branch information
fabiomereu-ey authored Dec 4, 2023
2 parents 7e0d9f2 + 9db6c22 commit c87d3b1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion merkle-tree/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ COPY ./package.json ./package-lock.json ./
COPY ./src ./src
COPY ./test ./test
COPY ./.babelrc ./
RUN npm ci --production
RUN npm i

EXPOSE 80
CMD npm start
2 changes: 1 addition & 1 deletion merkle-tree/dev.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM node:11.15
WORKDIR /app

COPY ./package.json ./package-lock.json ./
RUN npm ci
RUN npm i

EXPOSE 80
CMD npm run dev

0 comments on commit c87d3b1

Please sign in to comment.