Skip to content

Commit 8d39bdd

Browse files
author
Lukas Gentele
committedFeb 6, 2020
add Dockerfile
1 parent 7c6fcf5 commit 8d39bdd

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed
 

‎.dockerignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
**

‎.gitignore

-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
# Created by devspace init
55
/.devspace/
66
/chart/
7-
/Dockerfile
8-
/.dockerignore
97

108
# Build files
119
*.exe

‎Dockerfile

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
FROM alpine:3.11.3 as alpine
2+
3+
ARG RELEASE_VERSION=latest
4+
5+
RUN apk add curl tar
6+
RUN curl -s -L "https://github.com/devspace-cloud/devspace/releases/$RELEASE_VERSION" | sed -nE 's!.*"([^"]*devspace-linux-amd64)".*!https://github.com\1!p' | xargs -n 1 curl -L -o /bin/devspace \
7+
&& chmod +x /bin/devspace
8+
9+
ENTRYPOINT ["/bin/devspace"]

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
[![DevSpace Intro](docs/website/static/img/readme/devspace-readme-intro.gif)](https://devspace.sh)
2121

22-
![DevSpace Intro](docs/website/static/img/readme/devspace-cluster-compatibility.png)
22+
![DevSpace Compatibility](docs/website/static/img/readme/devspace-cluster-compatibility.png)
2323

2424
<br>
2525

0 commit comments

Comments
 (0)
Please sign in to comment.