Dockerfile

text/plain

Filename: Dockerfile
Type: text/plain
Part: 4
Message: Re: Regression tests fail with musl libc because libpq.so can't be loaded
FROM alpine

RUN apk add build-base

WORKDIR /usr/src
COPY . /usr/src
RUN ./test.sh

ENV LD_LIBRARY_PATH=.
ENTRYPOINT /usr/src/main