RoadSign Sideload now built-in web ui

This commit is contained in:
2024-01-01 18:16:57 +08:00
parent 86b65cd21f
commit 14a7d936d2
7 changed files with 54 additions and 5 deletions

View File

@ -1,8 +1,14 @@
# Building Backend
FROM golang:alpine as roadsign-server
RUN apk add nodejs npm
WORKDIR /source
COPY . .
WORKDIR /source/pkg/sideload/view
RUN npm install
RUN npm run build
WORKDIR /source
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -buildvcs -o /dist ./pkg/cmd/server/main.go
# Runtime