mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-12-08 06:21:32 +01:00
43
nomad/Dockerfile
Normal file
43
nomad/Dockerfile
Normal file
@@ -0,0 +1,43 @@
|
||||
FROM golang:1.10-alpine as builder
|
||||
MAINTAINER Jessica Frazelle <jess@linux.com>
|
||||
|
||||
ENV PATH /go/bin:/usr/local/go/bin:$PATH
|
||||
ENV GOPATH /go
|
||||
|
||||
RUN apk add --no-cache \
|
||||
--repository https://dl-3.alpinelinux.org/alpine/edge/main/ \
|
||||
bash \
|
||||
ca-certificates \
|
||||
gcc \
|
||||
git \
|
||||
libgcc \
|
||||
make \
|
||||
musl-dev \
|
||||
npm \
|
||||
pkgconf \
|
||||
yarn \
|
||||
zip
|
||||
|
||||
ENV NOMAD_VERSION v0.8.6
|
||||
|
||||
RUN go get github.com/hashicorp/nomad
|
||||
|
||||
WORKDIR /go/src/github.com/hashicorp/nomad
|
||||
|
||||
RUN git checkout "${NOMAD_VERSION}"
|
||||
|
||||
RUN set -x \
|
||||
&& make bootstrap ember-dist static-assets \
|
||||
&& CGO_ENABLED=1 GOOS=linux GOARCH=amd64 \
|
||||
go build \
|
||||
-ldflags "-X github.com/hashicorp/nomad/version.GitCommit=$(git rev-parse HEAD) -extldflags -static " \
|
||||
-tags "ui release" \
|
||||
-o /usr/bin/nomad
|
||||
|
||||
FROM alpine:latest
|
||||
|
||||
COPY --from=builder /usr/bin/nomad /usr/bin/nomad
|
||||
COPY --from=builder /etc/ssl/certs/ /etc/ssl/certs
|
||||
|
||||
ENTRYPOINT [ "nomad" ]
|
||||
CMD [ "--help" ]
|
||||
Reference in New Issue
Block a user