fixup! Add version key to /stats and more arguments
All checks were successful
CI / build (push) Successful in 6m1s

This commit is contained in:
Fijxu 2024-10-29 19:42:29 -03:00
parent 5101648c94
commit cc63b84a55
Signed by: Fijxu
GPG key ID: 32C1DDF333EDA6A4
2 changed files with 2 additions and 2 deletions

View file

@ -3,7 +3,6 @@
.dockerignore
Dockerfile
LICENSE
.git
.github
.gitignore
cache

View file

@ -2,8 +2,9 @@ FROM golang:alpine AS build
WORKDIR /app/
RUN apk add --no-cache build-base libwebp-dev
RUN apk add --no-cache build-base libwebp-dev git
COPY .git .git
COPY . .
RUN --mount=type=cache,target=/root/.cache/go-build \