Sign inSign up

aegypius/vulcain

By aegypius

•Updated over 5 years ago

Use HTTP/2 Server Push to create fast and idiomatic client-driven REST APIs (multi-arch)

Image
0

1.1K

aegypius/vulcain repository overview

This is an experimental image for Vulcain Server For more information about Vulcain go to Official repository⁠

Official image is here⁠

Dockerfile used for this image:


FROM golang:alpine as build-stage

ARG VULCAIN_VERSION=v0.2.1
ENV VULCAIN_VERSION=$VULCAIN_VERSION
ENV CGO_ENABLED=0

RUN go get -v github.com/dunglas/vulcain@${VULCAIN_VERSION}

# Create runtime
FROM scratch as final-stage
EXPOSE 80 443
COPY --from=build-stage /go/bin/vulcain /vulcain
CMD ["/vulcain"]

Tag summary

Content type

Image

Digest

Size

6 MB

Last updated

over 5 years ago

docker pull aegypius/vulcain