FROM golang:1.17-alpine AS build WORKDIR /code COPY time.go /code RUN go build ./time.go FROM alpine:latest AS final MAINTAINER Yehuda Deutsch WORKDIR /code COPY --from=build /code/time /code/time CMD ["/code/time"]