Skip to content

Instantly share code, notes, and snippets.

@richardsonlima
Created July 5, 2018 02:08
Show Gist options
  • Select an option

  • Save richardsonlima/bbe93022fa75810acc3d2e27dbc18e71 to your computer and use it in GitHub Desktop.

Select an option

Save richardsonlima/bbe93022fa75810acc3d2e27dbc18e71 to your computer and use it in GitHub Desktop.
Go Dockerfile sample to k8s meetup
FROM golang:1.9-alpine
WORKDIR /opt/
COPY . .
RUN go version
RUN go build ./webserver-fs.go
CMD ["./webserver-fs"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment