3 Commits

Author SHA1 Message Date
25e82be339 chore: update air config
All checks were successful
Build Docker Image / Explore-Gitea-Actions (push) Successful in 48s
Build and Push Docker Image / Explore-Gitea-Actions (push) Successful in 51s
2024-09-29 23:11:57 +02:00
a97507455e chore: gracefull shutdown 2024-09-29 23:11:57 +02:00
300aca64f4 chore(deps): update node.js to 69e667a
All checks were successful
Build Docker Image / Explore-Gitea-Actions (push) Successful in 47s
Build and Push Docker Image / Explore-Gitea-Actions (push) Successful in 51s
2024-09-28 22:15:32 +00:00

View File

@@ -5,7 +5,7 @@ COPY . ./
RUN templ generate && go test ./... && go build -o /me-fit/me-fit .
FROM node:22.9.0@sha256:cbe2d5f94110cea9817dd8c5809d05df49b4bd1aac5203f3594d88665ad37988 AS builder_node
FROM node:22.9.0@sha256:69e667a79aa41ec0db50bc452a60e705ca16f35285eaf037ebe627a65a5cdf52 AS builder_node
WORKDIR /me-fit
COPY . ./
RUN npm install && npm run build