diff options
-rw-r--r-- | docker/Dockerfile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile index 17f293b..ec80d00 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -25,6 +25,9 @@ RUN apt-get update && apt-get upgrade -y && \ apt-get install -y --no-install-recommends \ dh-golang golang golang-golang-x-text-dev +RUN wget http://archive.ubuntu.com/ubuntu/pool/universe/g/golang-x-text/golang-golang-x-text-dev_0.3.2-1_all.deb && \ + dpkg -i golang-golang-x-text-dev_0.3.2-1_all.deb + # osx cross compiling RUN git clone https://github.com/tpoechtrager/osxcross && \ cd osxcross/tarballs && \ |