Skip to content

Commit

Permalink
feat(docker): update dockerfile use stable version
Browse files Browse the repository at this point in the history
  • Loading branch information
likun7981 committed Jul 27, 2022
1 parent 69abd3c commit d334d02
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM node:lts-alpine
LABEL MAINTAINER likun7981
RUN npm i -g hlink@next
RUN npm i -g hlink
EXPOSE 9090
ENV DOCKER true
ENTRYPOINT hlink start
6 changes: 5 additions & 1 deletion commitlint.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@ module.exports = {
'type-case': [2, 'always', 'lower-case'],
'type-empty': [2, 'never'],
'scope-case': [2, 'always', 'lower-case'],
'scope-enum': [2, 'always', ['app', 'cli', 'core', 'scripts', 'other']],
'scope-enum': [
2,
'always',
['app', 'cli', 'core', 'scripts', 'docker', 'other'],
],
'type-enum': [
2,
'always',
Expand Down

0 comments on commit d334d02

Please sign in to comment.