missing prose

This commit is contained in:
maddalax 2024-09-24 12:52:59 -05:00
parent 33cf2dcac7
commit 90117e7b0f

View file

@ -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