Created
August 23, 2018 15:29
-
-
Save daGrevis/4740753d63ee801cf170a16ab67b85fe to your computer and use it in GitHub Desktop.
This file contains hidden or 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 postgres:10-alpine | |
| RUN apk add --no-cache git make gcc g++ curl-dev && \ | |
| git clone --depth 1 https://github.com/zombodb/zombodb.git && \ | |
| cd zombodb && \ | |
| make install && \ | |
| cd .. && \ | |
| rm -rf zombodb && \ | |
| apk del git make gcc g++ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment