devops-test-app/app/Dockerfile

10 lines
76 B
Docker
Raw Permalink Normal View History

FROM golang:1.22
2020-07-07 14:12:13 +05:00
WORKDIR /app
COPY . .
RUN go build -o app
CMD /app/app