fix: Fixes action workflows.
All checks were successful
Release code / build (push) Successful in 5m33s

This commit is contained in:
Tera << 8 2025-01-09 08:00:37 -05:00
parent ea0a953b0e
commit 356cfb8dca
Signed by: imterah
GPG key ID: 8FA7DD57BA6CEA37
3 changed files with 11 additions and 11 deletions

View file

@ -1,10 +0,0 @@
FROM golang:latest AS build
WORKDIR /build
COPY . /build
RUN bash build.sh
FROM busybox:stable-glibc AS run
WORKDIR /app
COPY --from=build /build/backends.prod.json /app/backends.json
COPY --from=build /build/api/api /app/hermes
COPY --from=build /build/sshbackend/sshbackend /app/sshbackend
ENTRYPOINT ["/app/hermes", "--backends-path", "/app/backends.json"]