We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5c3b44 commit aefbf9fCopy full SHA for aefbf9f
Dockerfile
@@ -1,13 +1,13 @@
1
-# syntax = docker/dockerfile:1.4
+# syntax = docker/dockerfile:1.6
2
3
-FROM node:18.16-alpine AS base
+FROM node:18.19-alpine AS base
4
WORKDIR /base
5
COPY --link package.json yarn.lock ./
6
RUN --mount=type=cache,target=/tmp/yarn_cache \
7
YARN_CACHE_FOLDER=/tmp/yarn_cache \
8
yarn install
9
10
-FROM node:18.16-alpine
+FROM node:18.19-alpine
11
RUN apk add --no-cache tini
12
13
COPY --link --from=base /base ./
Dockerfile-static
@@ -1,4 +1,4 @@
COPY package*.json ./
RUN npm install
0 commit comments