Upgrade the closure compiler version (#5955)
Also update Dockerfile for JavaScript. The old one is using an npm that is too outdatedpull/5966/head
parent
2350e20cae
commit
3efc3fd4f5
5 changed files with 39 additions and 5 deletions
@ -0,0 +1,33 @@ |
||||
FROM ubuntu:latest |
||||
|
||||
RUN apt-get update && apt-get install -y gnupg |
||||
|
||||
# Install dependencies. We start with the basic ones require to build protoc |
||||
# and the C++ build |
||||
RUN apt-get clean && apt-get update && apt-get install -y --force-yes \ |
||||
autoconf \ |
||||
autotools-dev \ |
||||
build-essential \ |
||||
bzip2 \ |
||||
ccache \ |
||||
curl \ |
||||
gcc \ |
||||
git \ |
||||
libc6 \ |
||||
libc6-dbg \ |
||||
libc6-dev \ |
||||
libgtest-dev \ |
||||
libtool \ |
||||
make \ |
||||
parallel \ |
||||
time \ |
||||
wget \ |
||||
&& apt-get clean |
||||
|
||||
|
||||
################## |
||||
# Javascript dependencies. |
||||
RUN apt-get install -y \ |
||||
# -- For javascript and closure compiler -- \ |
||||
npm \ |
||||
default-jre |
Loading…
Reference in new issue