diff options
author | Santo Cariotti <santo@dcariotti.me> | 2025-04-24 13:54:43 +0200 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2025-04-24 13:54:43 +0200 |
commit | fc18a898674d7e67611528d28492b3999363df90 (patch) | |
tree | c487b7a5eed124fc994007bceaf674b6d70beb24 | |
parent | b35829071ab0d0f3479021eac151b90e49a2fca5 (diff) |
release: version 0.2.0
-rw-r--r-- | docker/api/Dockerfile | 2 | ||||
-rw-r--r-- | docker/ui/Dockerfile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/docker/api/Dockerfile b/docker/api/Dockerfile index 1410559..4ecf32f 100644 --- a/docker/api/Dockerfile +++ b/docker/api/Dockerfile @@ -12,7 +12,7 @@ RUN CGO_ENABLED=0 GOOS=linux go build cmd/api/main.go # Run the exe file FROM scratch -LABEL version="0.1.1" +LABEL version="0.2.0" WORKDIR /app COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt diff --git a/docker/ui/Dockerfile b/docker/ui/Dockerfile index ae41a79..9396624 100644 --- a/docker/ui/Dockerfile +++ b/docker/ui/Dockerfile @@ -14,7 +14,7 @@ RUN CGO_ENABLED=0 GOOS=linux go build -o rahanna-ui cmd/ui/main.go # Run stage FROM alpine:latest -LABEL version="0.1.1" +LABEL version="0.2.0" WORKDIR /app COPY --from=builder /app/rahanna-ui . |