Pakaging Temporal app as a docker image

@tihomir thanks i have resolved the build issue, sorry for taking so long to post here

here’s the my dockerfile below

# syntax=docker/dockerfile:1
FROM golang:1.16-alpine
WORKDIR /app/
COPY . .

RUN go build -o ./main
CMD ["./main" ]