fix: dockerfile
All checks were successful
Build Docker Image / Build-Docker-Image (push) Successful in 41s

This commit is contained in:
2024-11-29 20:35:18 +01:00
parent 84fde86421
commit 414e9d7814

View File

@@ -4,7 +4,7 @@ RUN go install github.com/a-h/templ/cmd/templ@latest && go install github.com/ve
COPY go.mod go.sum ./
RUN go mod download
COPY . ./
RUN templ generate && mockery && staticcheck ./... && go test ./... && go build -o /me-fit/me-fit .
RUN templ generate && mockery --log-level warn && staticcheck ./... && go test ./... && go build -o /me-fit/me-fit .
FROM node:22.11.0@sha256:5c76d05034644fa8ecc9c2aa84e0a83cd981d0ef13af5455b87b9adf5b216561 AS builder_node