From 90117e7b0fffecedd1226bfc110efa350ae9b67a Mon Sep 17 00:00:00 2001 From: maddalax Date: Tue, 24 Sep 2024 12:52:59 -0500 Subject: [PATCH] missing prose --- htmgo-site/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/htmgo-site/Dockerfile b/htmgo-site/Dockerfile index 695ac2d..1e21d1a 100644 --- a/htmgo-site/Dockerfile +++ b/htmgo-site/Dockerfile @@ -4,6 +4,7 @@ FROM golang:1.23-alpine AS builder RUN apk update RUN apk add git RUN apk add curl +RUN apk add nodejs npm # Set the working directory inside the container WORKDIR /app @@ -21,6 +22,8 @@ COPY . . RUN go get github.com/maddalax/htmgo/framework@latest RUN go mod tidy +RUN npm install + # Build the Go binary for Linux RUN LOG_LEVEL=debug GOPRIVATE=github.com/maddalax GOPROXY=direct go run github.com/maddalax/htmgo/cli/htmgo@latest build