mirror of
https://github.com/techno-tim/littlelink-server.git
synced 2024-11-21 05:15:22 +01:00
nodejs 20.11.1 (#568)
* nodejs 20.11.1 * add missing node-20.11.1 bump * update .nvmrc and revert yarn.lock changes * CI: bump to nodejs 20.11.1
This commit is contained in:
parent
a0f0d03641
commit
e86e0da99b
2
.github/workflows/main.yml
vendored
2
.github/workflows/main.yml
vendored
@ -14,7 +14,7 @@ jobs:
|
||||
- name: Use Node.js
|
||||
uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # 4.0.1
|
||||
with:
|
||||
node-version: v20.10.0
|
||||
node-version: v20.11.1
|
||||
- name: Install Dependencies, Test, and Build
|
||||
run: |
|
||||
yarn install --frozen-lockfile --check-files --network-timeout 600000
|
||||
|
2
.github/workflows/pull-request.yml
vendored
2
.github/workflows/pull-request.yml
vendored
@ -17,7 +17,7 @@ jobs:
|
||||
- name: Use Node.js
|
||||
uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # 4.0.1
|
||||
with:
|
||||
node-version: v20.10.0
|
||||
node-version: v20.11.1
|
||||
- name: Install Dependencies, Test, and Build
|
||||
run: |
|
||||
yarn install --frozen-lockfile --check-files --network-timeout 600000
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM node:20.10.0-alpine AS node-build
|
||||
FROM node:20.11.1-alpine AS node-build
|
||||
WORKDIR /usr/src/app
|
||||
COPY package.json ./
|
||||
COPY yarn.lock ./
|
||||
@ -8,7 +8,7 @@ RUN yarn install --frozen-lockfile --check-files --network-timeout 600000
|
||||
RUN yarn build --noninteractive
|
||||
RUN yarn install --frozen-lockfile --check-files --production --modules-folder node_modules_prod --network-timeout 600000
|
||||
|
||||
FROM node:20.10.0-alpine
|
||||
FROM node:20.11.1-alpine
|
||||
WORKDIR /usr/src/app
|
||||
ENV NODE_ENV production
|
||||
RUN mkdir -p /node_modules
|
||||
|
Loading…
Reference in New Issue
Block a user