mirror of https://github.com/knative/docs.git
27 lines
895 B
Docker
27 lines
895 B
Docker
# Use the official Golang image to create a build artifact.
|
|
# This is based on Debian and sets the GOPATH to /go.
|
|
# https://hub.docker.com/_/golang
|
|
FROM golang:1.12 as builder
|
|
|
|
# Copy local code to the container image.
|
|
WORKDIR /go/src/github.com/knative/docs/helloworld-r
|
|
COPY invoke.go .
|
|
|
|
# Build the command inside the container.
|
|
# (You may fetch or manage dependencies here,
|
|
# either manually or with a tool like "godep".)
|
|
RUN CGO_ENABLED=0 GOOS=linux go build -v -o invoke
|
|
|
|
# The official R base image
|
|
# https://hub.docker.com/_/r-base
|
|
# Use a Docker multi-stage build to create a lean production image.
|
|
# https://docs.docker.com/develop/develop-images/multistage-build/#use-multi-stage-builds
|
|
FROM r-base:3.6.0
|
|
|
|
# Copy Go binary
|
|
COPY --from=builder /go/src/github.com/knative/docs/helloworld-r/invoke /invoke
|
|
COPY HelloWorld.R .
|
|
|
|
# Run the web service on container startup.
|
|
CMD ["/invoke"]
|