Created
June 15, 2017 13:24
-
-
Save Globegitter/d75a39f7f7c0f6305ce52f3196c46cdc to your computer and use it in GitHub Desktop.
Stellar core build docker image alpine
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
# Image: globegitter/stellar-core-build:alpine-3.6 | |
FROM alpine:3.6 | |
RUN apk add --no-cache --virtual=pandoc-deps wget ca-certificates && \ | |
wget https://gitlab.com/ConorIA/alpine-pandoc/raw/master/[email protected] -O /etc/apk/keys/[email protected] && \ | |
echo https://conoria.gitlab.io/alpine-pandoc/ >> /etc/apk/repositories && \ | |
apk add --no-cache --repository http://dl-3.alpinelinux.org/alpine/edge/testing cmark && \ | |
apk add --no-cache openssh git build-base pkgconfig \ | |
autoconf automake libtool bison flex postgresql-dev pandoc && \ | |
apk del pandoc-deps |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment