Kon/Dockerfile
toast 2a80bb8254
Some checks failed
Build and push Docker image / build (push) Failing after 45s
Build and push Docker image / deploy (push) Has been skipped
Housekeeping
2024-09-22 02:49:01 +10:00

11 lines
290 B
Docker

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