summaryrefslogtreecommitdiff
path: root/docker/Dockerfile
blob: 6fd910ab86479aeab7146002c75a4d7a8f57f066 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# An image to build and package the go binary for Bitmask Lite (RiseupVPN)
# (c) LEAP Encryption Access Project 2018
FROM ubuntu:18.04

MAINTAINER LEAP Encryption Access Project <info@leap.se>
LABEL Description="An image to build Bitmask Lite" Vendor="LEAP" Version="1.0"

RUN apt update && apt upgrade -y

# Install all the deps for building bitmask-systray
# and riseup-vpn

RUN apt install -y --no-install-recommends \
        build-essential \
        make \
        git curl wget \
        golang libappindicator3-dev libgtk-3-dev \
        mingw-w64 upx-ucl python snapcraft \
        unzip \
        devscripts debhelper dh-golang golang-golang-x-text-dev 

# we need nsis >= 3.0
RUN echo 'deb http://archive.ubuntu.com/ubuntu cosmic universe' >> /etc/apt/sources.list
RUN apt update
RUN apt install -y --no-install-recommends -t cosmic nsis