-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update critical dependencies and simplify the build step (#82)
* Update dep and simplify build * Bump version
- Loading branch information
Showing
6 changed files
with
146 additions
and
161 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,6 @@ | ||
FROM node:16.13 AS base | ||
|
||
|
||
FROM base AS build | ||
|
||
WORKDIR /data | ||
ENTRYPOINT [ "npm", "install"] | ||
|
||
|
||
FROM base AS lint | ||
FROM node:16.16 AS base | ||
|
||
WORKDIR /data | ||
|
||
ENTRYPOINT [ "npx", "prettier", "--write" ] | ||
ENTRYPOINT [] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.