mirror of
https://github.com/captn3m0/muse-dl.git
synced 2024-09-20 15:57:11 +00:00
12 lines
196 B
Docker
12 lines
196 B
Docker
FROM crystallang/crystal:latest as builder
|
|
|
|
WORKDIR /build
|
|
|
|
COPY . .
|
|
|
|
RUN shards install && \
|
|
shards build --release --static
|
|
|
|
FROM scratch
|
|
|
|
COPY --from=builder /build/bin/muse-dl /muse-dl-static |