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 66bb660 commit 19ecb03Copy full SHA for 19ecb03
1 file changed
Dockerfile.dev
@@ -0,0 +1,18 @@
1
+FROM node:22-alpine AS deps
2
+
3
+WORKDIR /build
4
+COPY package*.json ./
5
+COPY yarn.lock ./
6
7
+RUN yarn install
8
9
+FROM node:22-alpine
10
11
+WORKDIR /opt/5stack
12
13
+RUN apk add --no-cache util-linux bash containerd-ctr dmidecode
14
15
+COPY --from=deps /build/node_modules ./node_modules
16
+COPY . .
17
18
+CMD [ "yarn", "start:dev" ]
0 commit comments