diff --git a/examples/todo-list/Dockerfile b/examples/todo-list/Dockerfile index b8b50e0..65802a0 100644 --- a/examples/todo-list/Dockerfile +++ b/examples/todo-list/Dockerfile @@ -13,10 +13,6 @@ RUN go mod download # Copy the source code into the container COPY . . -# Always download the latest version of the framework -RUN go get github.com/maddalax/htmgo/framework@latest -RUN go mod tidy - # Build the Go binary for Linux RUN CGO_ENABLED=0 GOPRIVATE=github.com/maddalax LOG_LEVEL=debug go run github.com/maddalax/htmgo/cli/htmgo@latest build diff --git a/htmgo-site/Dockerfile b/htmgo-site/Dockerfile index afe8374..07ccd36 100644 --- a/htmgo-site/Dockerfile +++ b/htmgo-site/Dockerfile @@ -18,10 +18,6 @@ RUN go mod download # Copy the source code into the container COPY . . -# Always download the latest version of the framework -RUN GOPRIVATE=github.com/maddalax GOPROXY=direct go get github.com/maddalax/htmgo/framework@latest -RUN go mod tidy - RUN npm install # Build the Go binary for Linux diff --git a/templates/starter/Dockerfile b/templates/starter/Dockerfile index eeb3943..7bed324 100644 --- a/templates/starter/Dockerfile +++ b/templates/starter/Dockerfile @@ -17,10 +17,6 @@ RUN go mod download # Copy the source code into the container COPY . . -# Always download the latest version of the framework -RUN go get github.com/maddalax/htmgo/framework@latest -RUN go mod tidy - # Build the Go binary for Linux RUN GOPRIVATE=github.com/maddalax GOPROXY=direct go run github.com/maddalax/htmgo/cli/htmgo@latest build