diff options
| -rw-r--r-- | .dockerignore | 1 | ||||
| -rw-r--r-- | Dockerfile | 20 |
2 files changed, 21 insertions, 0 deletions
diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000000..91224e5de8 --- /dev/null +++ b/.dockerignore @@ -0,0 +1 @@ +**/* diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000000..949148cce5 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,20 @@ +# To build the image: +# docker build . -t mullvadvpn/mullvadvpn-app-build +# To push the image to our docker hub: +# docker push mullvadvpn/mullvadvpn-app-build +FROM debian:unstable +RUN apt update -y +RUN apt install build-essential \ + gcc \ + libdbus-1-dev \ + rpm \ + gconf2 \ + go2 \ + binutils \ + curl \ + p7zip-full \ + git -y +RUN curl https://sh.rustup.rs -sSf | bash -s -- -y +ENV PATH="/root/.cargo/bin/:${PATH}" +RUN mkdir /mvd +CMD tail -f /dev/null |
