Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .node-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
22.21.1
24.12.0
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
ARG NODE_VERSION=22.21.1-alpine
ARG NODE_VERSION=24.12.0-alpine
ARG NPM_VERSION=10.9.1

FROM node:${NODE_VERSION} as base

Check warning on line 4 in Dockerfile

View workflow job for this annotation

GitHub Actions / pipeline

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/
RUN npm i -g npm@${NPM_VERSION} --audit false
RUN apk add --no-cache --update \
tzdata \
bluez \
bluez-deprecated

FROM base as development

Check warning on line 11 in Dockerfile

View workflow job for this annotation

GitHub Actions / pipeline

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

ENV NODE_ENV=development

Expand All @@ -26,7 +26,7 @@

COPY --chown=node:node . ./

FROM base as production

Check warning on line 29 in Dockerfile

View workflow job for this annotation

GitHub Actions / pipeline

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

ENV NODE_ENV=production
RUN rm -rf /opt/yarn*
Expand Down
58 changes: 30 additions & 28 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"@types/lodash.snakecase": "4.1.9",
"@types/luxon": "3.7.1",
"@types/noble": "0.0.44",
"@types/node": "22.19.3",
"@types/node": "24.10.4",
"@types/ws": "8.18.1",
"eslint": "9.39.2",
"eslint-config-prettier": "10.1.8",
Expand Down
Loading