Skip to content

Instantly share code, notes, and snippets.

@franzwong
Created October 26, 2024 04:09
Show Gist options
  • Save franzwong/e9c1992d858dad530f9f0eaa5852e383 to your computer and use it in GitHub Desktop.
Save franzwong/e9c1992d858dad530f9f0eaa5852e383 to your computer and use it in GitHub Desktop.
Create docker container for kdb+
FROM alpine:3.20.3
WORKDIR /app
ENV QHOME=/app/q
ENV PATH=${PATH}:${QHOME}/l64/
ENTRYPOINT ["rlwrap", "-r", "/app/q/l64/q"]
RUN apk update \
&& apk add --no-cache rlwrap gcompat
COPY q /app/q
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment