Skip to content

Commit

Permalink
dockerfile update
Browse files Browse the repository at this point in the history
  • Loading branch information
bjdmeest committed Jun 23, 2023
1 parent 4ad4983 commit aef3ab6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## Unreleased

### Fixed

- Dockerfile: faster and node v18

## [1.5.3] - 2023-06-23

### Fixed
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM node:12-alpine
FROM node:18-alpine

WORKDIR /app

ADD . .

RUN npm install -g .
RUN npm ci

ENTRYPOINT ["yarrrml-parser"]
ENTRYPOINT ["node", "/app/bin/parser.js"]
CMD ["-h"]

0 comments on commit aef3ab6

Please sign in to comment.