prqlc 0.13.11

PRQL is a modern language for transforming data — a simple, powerful, pipelined SQL replacement.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# syntax=docker/dockerfile:1.4

# TODO: switch to `curlimages/curl`
# glaredb binary releases are not compatible with alpine
# So we can't use here now
# https://github.com/GlareDB/glaredb/issues/1912
FROM --platform=linux/amd64 docker.io/library/buildpack-deps:stable

RUN <<EOF
cd /usr/local/bin
curl https://glaredb.com/install.sh | sh
EOF

CMD [ "glaredb", "server" ]