2024-09-22 02:49:01 +10:00
|
|
|
FROM scratch as base
|
2024-08-03 13:04:19 +10:00
|
|
|
WORKDIR /builder
|
2024-05-03 05:26:05 +10:00
|
|
|
COPY . .
|
2023-12-08 22:25:44 +11:00
|
|
|
|
2024-08-03 13:04:19 +10:00
|
|
|
FROM alpine:edge
|
|
|
|
LABEL org.opencontainers.image.source="https://git.toast-server.net/toast/Kon"
|
2024-07-22 16:37:19 +10:00
|
|
|
RUN apk add --no-cache libgcc fluidsynth
|
2023-12-08 22:25:44 +11:00
|
|
|
WORKDIR /kon
|
2024-09-22 02:49:01 +10:00
|
|
|
COPY --from=builder /builder/target/x86_64-unknown-linux-musl/release/kon .
|
2024-07-20 09:56:58 +10:00
|
|
|
CMD [ "./kon" ]
|