Skip to content

Commit

Permalink
chore(deps): update node.js to v18.17
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Jul 23, 2023
1 parent daa0bbb commit 7b832a3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# syntax = docker/dockerfile:1.4

FROM node:18.16-alpine AS base
FROM node:18.17-alpine AS base
WORKDIR /base
COPY --link package.json yarn.lock ./
RUN --mount=type=cache,target=/tmp/yarn_cache \
YARN_CACHE_FOLDER=/tmp/yarn_cache \
yarn install

FROM node:18.16-alpine
FROM node:18.17-alpine
RUN apk add --no-cache tini
WORKDIR /base
COPY --link --from=base /base ./
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-static
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18.16-alpine AS base
FROM node:18.17-alpine AS base
WORKDIR /base
COPY package*.json ./
RUN npm install
Expand Down

0 comments on commit 7b832a3

Please sign in to comment.