Created
February 20, 2019 11:33
-
-
Save flavianmissi/f705f03ac014d70f30b438774add43d9 to your computer and use it in GitHub Desktop.
flavia/seabolt's Dockerfile
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
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