Skip to content

Using the pact ruby standalone with Alpine Linux Docker

Matt Fellows edited this page Jul 19, 2019 · 6 revisions
FROM ruby:2-alpine

RUN apk add --no-cache --virtual build-dependencies build-base
RUN apk --no-cache add ca-certificates wget bash \
  && wget -q -O /etc/apk/keys/sgerrand.rsa.pub https://alpine-pkgs.sgerrand.com/sgerrand.rsa.pub \
  && wget https://github.com/sgerrand/alpine-pkg-glibc/releases/download/2.29-r0/glibc-2.29-r0.apk \
  && apk add glibc-2.29-r0.apk
Clone this wiki locally