mirror of
https://github.com/GeopJr/BLAHAJ.git
synced 2025-01-22 16:46:56 +01:00
11 lines
278 B
Text
11 lines
278 B
Text
|
FROM --platform=linux/amd64 crystallang/crystal:latest-alpine as builder
|
||
|
|
||
|
WORKDIR /root/src
|
||
|
COPY . .
|
||
|
RUN shards build --production --no-debug --release -Dpreview_mt --static
|
||
|
|
||
|
|
||
|
FROM scratch
|
||
|
COPY --from=builder /root/src/bin/blahaj /usr/local/bin/blahaj
|
||
|
ENTRYPOINT [ "blahaj" ]
|