Skip to content
Snippets Groups Projects
Commit c46eb9a3 authored by nimrod's avatar nimrod
Browse files

Workbench: Add the duckdb CLI.

parent 6491530a
No related branches found
No related tags found
No related merge requests found
Pipeline #3932 passed
# hadolint global ignore=DL4001
# hadolint ignore=DL3007
FROM registry.shore.co.il/toolbx:latest as temp
RUN curl https://github.com/duckdb/duckdb/releases/download/v1.0.0/duckdb_cli-linux-amd64.zip --output /tmp/duckdb.zip && \
unzip /tmp/duckdb.zip duckdb -d /tmp/ && \
install -m 755 -o root -g root /tmp/duckdb /usr/local/bin/duckdb
# hadolint ignore=DL3007
FROM registry.shore.co.il/toolbx:latest
COPY --from=temp /usr/local/bin/duckdb /usr/local/bin/
SHELL ["/bin/bash", "-o", "pipefail", "-xc"]
ENV PATH /opt/pipx/bin:/usr/local/lib/go/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
# hadolint ignore=DL3008
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment