Compose app skeletons
Signed-off-by: Anca Iordache <anca.iordache@docker.com>
This commit is contained in:
11
samples/nginx-gohttp_1/Dockerfile
Normal file
11
samples/nginx-gohttp_1/Dockerfile
Normal file
@@ -0,0 +1,11 @@
|
||||
FROM golang:1.13 AS builder
|
||||
|
||||
WORKDIR /compose/hello-docker
|
||||
COPY main.go main.go
|
||||
RUN CGO_ENABLED=0 go build -o backend main.go
|
||||
|
||||
FROM scratch
|
||||
COPY --from=builder /compose/hello-docker/backend /usr/local/bin/backend
|
||||
CMD ["/usr/local/bin/backend"]
|
||||
|
||||
|
Reference in New Issue
Block a user