Files
spring-tools/concourse/docker/Dockerfile
2018-01-31 14:11:13 -08:00

19 lines
298 B
Docker

FROM ubuntu:16.04
ADD npmrc /root/.npmrc
RUN apt-get update && apt-get install -y \
build-essential \
gettext-base \
git \
jq \
openjdk-8-jdk \
curl
RUN curl -sL https://deb.nodesource.com/setup_8.x | bash - \
&& apt-get install -y nodejs
RUN npm install -g vsce
CMD /bin/bash