feat(node): adding node component

Cleaning up the repo
This commit is contained in:
2025-07-16 15:18:10 +02:00
parent fef4f1d899
commit cad3f93566
20 changed files with 126 additions and 88 deletions

View File

@ -1,5 +1,5 @@
# Base image
FROM golang:tip-alpine3.21 AS builder
FROM golang:tip-alpine3.22 AS builder
# Set directory to known value
WORKDIR /app
@ -14,7 +14,7 @@ RUN git clone https://github.com/coveooss/gotemplate.git . && \
CGO_ENABLED=0 go build
FROM alpine:3.21
FROM alpine:3.22
#
COPY --from=builder /app/gotemplate /gotemplate
COPY --from=builder /usr/bin/valkey-cli /valkey-cli