Use HTTP/2 Server Push to create fast and idiomatic client-driven REST APIs (multi-arch)
1.1K
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"]
Content type
Image
Digest
Size
6 MB
Last updated
over 5 years ago
docker pull aegypius/vulcain