mirror of
https://github.com/techno-tim/littlelink-server.git
synced 2025-02-16 19:11:21 +01:00
feat(node): Upgraded to 18.16.0
This commit is contained in:
parent
2132c29f47
commit
f11f7f6149
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@2fddd8803e2f5c9604345a0b591c3020ee971a93
|
||||
with:
|
||||
node-version: v18.13.0
|
||||
node-version: v18.16.0
|
||||
- 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@2fddd8803e2f5c9604345a0b591c3020ee971a93
|
||||
with:
|
||||
node-version: v18.13.0
|
||||
node-version: v18.16.0
|
||||
- name: Install Dependencies, Test, and Build
|
||||
run: |
|
||||
yarn install --frozen-lockfile --check-files --network-timeout 600000
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM node:18.13.0-alpine AS node-build
|
||||
FROM node:18.16.0-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:18.13.0-alpine
|
||||
FROM node:18.16.0-alpine
|
||||
WORKDIR /usr/src/app
|
||||
ENV NODE_ENV production
|
||||
RUN mkdir -p /node_modules
|
||||
|
Loading…
Reference in New Issue
Block a user