Created
October 26, 2024 04:09
-
-
Save franzwong/e9c1992d858dad530f9f0eaa5852e383 to your computer and use it in GitHub Desktop.
Create docker container for kdb+
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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