loggalicious/backend/docker/images/convey/Dockerfile

10 lines
267 B
Docker

FROM golang:1.9-alpine3.7
RUN apk add --no-cache git alpine-sdk
RUN go get -v github.com/smartystreets/goconvey
COPY entrypoint.sh /usr/local/bin/docker-convey-entrypoint
RUN chmod +x /usr/local/bin/docker-convey-entrypoint
ENTRYPOINT ["docker-convey-entrypoint"]