mirror of
https://github.com/americanexpress/baton.git
synced 2025-11-24 06:26:04 +00:00
11 lines
116 B
Docker
11 lines
116 B
Docker
FROM golang:1.9.3
|
|
|
|
RUN mkdir -p /go/src/baton
|
|
WORKDIR /go/src/baton
|
|
|
|
COPY . .
|
|
|
|
RUN go install
|
|
|
|
ENTRYPOINT ["baton"]
|