laconicd/Dockerfile

31 lines
617 B
Docker
Raw Normal View History

2018-07-12 23:22:19 +00:00
FROM golang:alpine AS build-env
# Set up dependencies
2020-03-18 12:43:02 +00:00
ENV PACKAGES git build-base
2018-07-12 23:22:19 +00:00
# Set working directory for the build
WORKDIR /go/src/github.com/vulcanize/chiba-clonk
2018-07-12 23:22:19 +00:00
# Install dependencies
RUN apk add --update $PACKAGES
RUN apk add linux-headers
2018-07-12 23:22:19 +00:00
# Add source files
COPY . .
# Make the binary
2020-03-18 12:43:02 +00:00
RUN make build
2018-07-12 23:22:19 +00:00
# Final image
FROM alpine:3.15
2018-07-12 23:22:19 +00:00
# Install ca-certificates
2020-11-24 21:36:46 +00:00
RUN apk add --update ca-certificates jq
WORKDIR /
2018-07-12 23:22:19 +00:00
# Copy over binaries from the build-env
COPY --from=build-env /go/src/github.com/vulcanize/chiba-clonk/build/chibaclonkd /usr/bin/chibaclonkd
2018-07-12 23:22:19 +00:00
# Run chibaclonkd by default
CMD ["chibaclonkd"]