mirror of
https://github.com/ralsina/tartrazine.git
synced 2024-11-10 05:22:23 +00:00
16 lines
307 B
Docker
16 lines
307 B
Docker
|
FROM --platform=${TARGETPLATFORM:-linux/amd64} alpine:3.20 AS build
|
||
|
RUN apk add --no-cache \
|
||
|
crystal \
|
||
|
shards \
|
||
|
yaml-dev \
|
||
|
yaml-static \
|
||
|
openssl-dev \
|
||
|
openssl-libs-static \
|
||
|
libxml2-dev \
|
||
|
libxml2-static \
|
||
|
zlib-dev \
|
||
|
zlib-static \
|
||
|
xz-dev \
|
||
|
xz-static \
|
||
|
make
|