Kon/Dockerfile
toast 75f40bd65a
Some checks failed
Build and push Docker image / deploy (push) Blocked by required conditions
Build and push Docker image / build (push) Has been cancelled
Repository restructure
2024-12-07 04:24:35 +11:00

11 lines
287 B
Docker

FROM scratch AS base
WORKDIR /builder
COPY . .
FROM alpine:3.21
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" ]