Skip to content

Instantly share code, notes, and snippets.

@Globegitter
Created June 15, 2017 13:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Globegitter/d75a39f7f7c0f6305ce52f3196c46cdc to your computer and use it in GitHub Desktop.
Save Globegitter/d75a39f7f7c0f6305ce52f3196c46cdc to your computer and use it in GitHub Desktop.
Stellar core build docker image alpine
# 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/conor@conr.ca-584aeee5.rsa.pub -O /etc/apk/keys/conor@conr.ca-584aeee5.rsa.pub && \
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