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 3952cbb commit 7f48fecCopy full SHA for 7f48fec
2 files changed
Dockerfile
@@ -1,8 +1,8 @@
1
FROM node:18-alpine AS dashboard-builder
2
-WORKDIR /app/dashboard
3
-COPY dashboard/package.json dashboard/package-lock.json ./
+WORKDIR /app/apps/dashboard
+COPY apps/dashboard/package.json apps/dashboard/package-lock.json ./
4
RUN npm ci
5
-COPY dashboard ./
+COPY apps/dashboard ./
6
RUN npm run build
7
8
FROM golang:1.23-alpine AS builder
Dockerfile-ci
@@ -1,11 +1,11 @@
9
10
11
FROM golang:1.23-alpine
0 commit comments