mirror of https://github.com/knative/docs.git
36 lines
1.2 KiB
Docker
36 lines
1.2 KiB
Docker
# Copyright 2018 The Knative Authors
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# https://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
FROM golang AS builder
|
|
|
|
# copy the source
|
|
ADD . /go/src/github.com/knative/docs/code-samples/serving/gitwebhook-go
|
|
WORKDIR /go/src/github.com/knative/docs/code-samples/serving/gitwebhook-go
|
|
|
|
# install dependencies
|
|
RUN go get github.com/google/go-github/github
|
|
RUN go get golang.org/x/oauth2
|
|
RUN go get gopkg.in/go-playground/webhooks.v3
|
|
RUN go get gopkg.in/go-playground/webhooks.v3/github
|
|
|
|
# build the sample
|
|
RUN CGO_ENABLED=0 go build -o /go/bin/webhook-sample .
|
|
|
|
FROM golang:alpine
|
|
|
|
EXPOSE 8080
|
|
COPY --from=builder /go/bin/webhook-sample /app/webhook-sample
|
|
|
|
ENTRYPOINT ["/app/webhook-sample"]
|