We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0384174 commit e65a844Copy full SHA for e65a844
DockerfileStefanTest
@@ -0,0 +1,12 @@
1
+FROM golang:1.20.1 as installer
2
+WORKDIR /porter
3
+RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates
4
+RUN go install github.com/go-delve/delve/cmd/dlv@latest
5
+RUN chmod +x /go/bin/dlv
6
+
7
8
+FROM debian:bullseye-slim as runner
9
10
+RUN apt-get update && apt-get install -y --no-install-recommends sqlite3
11
+COPY --from=installer /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
12
0 commit comments