blob: d4e9a14022d7276f9d14ae22eb871c2e5db7854a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# 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 mkdir /mvd
CMD tail -f /dev/null
|