Skip to content

Instantly share code, notes, and snippets.

@flavianmissi
Created February 20, 2019 11:33
Show Gist options
  • Save flavianmissi/f705f03ac014d70f30b438774add43d9 to your computer and use it in GitHub Desktop.
Save flavianmissi/f705f03ac014d70f30b438774add43d9 to your computer and use it in GitHub Desktop.
flavia/seabolt's Dockerfile
ARG PKG_VER_ALPINE=3.8
FROM alpine:${PKG_VER_ALPINE}
# seabolt deps
RUN apk add --no-cache openssl-dev pkgconfig cmake
# download and extract seabolt (neo4j go driver C dep)
RUN wget https://github.com/neo4j-drivers/seabolt/releases/download/v1.7.2/seabolt-1.7.2-Linux-alpine-3.8.2.tar.gz
# now extract it
RUN tar xvf seabolt-1.7.2-Linux-alpine-3.8.2.tar.gz
# then install it by moving the package contents to /
RUN cp -r seabolt-1.7.2-Linux-alpine-3.8.2/* /seabolt
RUN rm -r seabolt-1.7.2-Linux-alpine-3.8.2/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment