Kon/Dockerfile
toast 0010cdde83
All checks were successful
Build and push Docker image / build (push) Successful in 7m37s
Build and push Docker image / deploy (push) Successful in 1m4s
hddhfgggsasdfa
2024-09-22 11:37:14 +10:00

11 lines
287 B
Docker

FROM scratch AS base
WORKDIR /builder
COPY . .
FROM alpine:3.20
LABEL org.opencontainers.image.source="https://git.toast-server.net/toast/Kon"
RUN apk add --no-cache libgcc fluidsynth
WORKDIR /kon
COPY --from=base /builder/target/x86_64-unknown-linux-musl/release/kon .
CMD [ "./kon" ]