Files
spring-tools/concourse/docker/Dockerfile
Kris De Volder 60fa621fd9 Enable unsafe-perm option for npm
Otherwise it doesn't work properly when running as root in docker container
2016-11-18 16:11:19 -08:00

16 lines
259 B
Docker

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