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