Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion example/hello-world/docker/http/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ RUN go build -o hello-world-http http/main.go
FROM alpine
RUN mkdir /lib64 && ln -s /lib/libc.musl-x86_64.so.1 /lib64/ld-linux-x86-64.so.2
RUN apk update && apk add ca-certificates
COPY --from=build /cache/hello-world /app/
COPY --from=build /cache/hello-world-http /app/
ENTRYPOINT /app/hello-world-http
2 changes: 1 addition & 1 deletion templates/docker/dockerfile_http.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ RUN go build -o {{ .Name }}-http http/main.go
FROM alpine
RUN mkdir /lib64 && ln -s /lib/libc.musl-x86_64.so.1 /lib64/ld-linux-x86-64.so.2
RUN apk update && apk add ca-certificates
COPY --from=build /cache/{{ .Name }} /app/
COPY --from=build /cache/{{ .Name }}-http /app/
ENTRYPOINT /app/{{ .Name }}-http