update dockerfiles

This commit is contained in:
nkanaev
2025-03-26 14:33:23 +00:00
parent e4f9dc8c72
commit 9fe02931d8
2 changed files with 6 additions and 6 deletions

View File

@@ -1,13 +1,13 @@
FROM golang:alpine3.18 AS build
FROM golang:alpine3.21 AS build
RUN apk add build-base git
WORKDIR /src
COPY . .
RUN --mount=type=cache,target=/root/.cache/go-build --mount=type=cache,target=/root/go/pkg \
RUN --mount=type=cache,target=/root/.cache/go-build \
--mount=type=cache,target=/root/go/pkg \
make host
FROM alpine:latest
RUN apk add --no-cache ca-certificates && \
update-ca-certificates
RUN apk add --no-cache ca-certificates && update-ca-certificates
COPY --from=build /src/out/yarr /usr/local/bin/yarr
EXPOSE 7070
ENTRYPOINT ["/usr/local/bin/yarr"]