forked from LaconicNetwork/kompose
Add Dockerfile (#1101)
This commit is contained in:
parent
7b6c89b3de
commit
4f07f2a5a4
10
Dockerfile
Normal file
10
Dockerfile
Normal file
@ -0,0 +1,10 @@
|
||||
FROM alpine:3.9
|
||||
|
||||
RUN apk add --no-cache curl
|
||||
COPY ./build/VERSION VERSION
|
||||
RUN version=$(cat VERSION) && curl -L "https://github.com/kubernetes/kompose/releases/download/v${version}/kompose-linux-amd64" -o kompose
|
||||
|
||||
FROM alpine:3.9
|
||||
|
||||
COPY --from=0 /kompose /usr/bin/kompose
|
||||
RUN chmod +x /usr/bin/kompose
|
||||
Loading…
Reference in New Issue
Block a user