Kon/Dockerfile

11 lines
287 B
Docker
Raw Normal View History

2024-09-22 03:44:55 +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 . .
2024-09-22 03:58:50 +10:00
FROM alpine:3.20
2024-08-03 13:04:19 +10:00
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
WORKDIR /kon
2024-09-22 04:41:15 +10:00
COPY --from=base /builder/target/x86_64-unknown-linux-musl/release/kon .
2024-07-20 09:56:58 +10:00
CMD [ "./kon" ]