blob: 215fa0623191cf2fc7d3a0dbe0a0832a73632a4d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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:stable@sha256:75f7d0590b45561bfa443abad0b3e0f86e2811b1fc176f786cd30eb078d1846f
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 --default-toolchain none
ENV PATH="/root/.cargo/bin/:${PATH}"
RUN mkdir /mvd
CMD tail -f /dev/null
|