Skip to content

Commit ee34fae

Browse files
committed
use Alpine as base image: Docker is just a delivery container
1 parent a52dfe5 commit ee34fae

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
FROM scratch
1+
FROM alpine:3.10
22

33
ADD secrets-init /usr/local/bin/secrets-init
44

5-
ENTRYPOINT ["/usr/local/bin/secrets-init"]
5+
CMD ["secrets-init", "--version"]

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import (
1919
)
2020

2121
var (
22-
versionString = "0.1.3"
22+
versionString = "0.1.4"
2323
)
2424

2525
func main() {

0 commit comments

Comments
 (0)