Files
spring-tools/concourse/docker/Dockerfile
Kris De Volder 8169eae0e6 Remove maven from Docker image
I think we don't need it since we use maven wrapper anyway.
2016-12-14 17:22:46 -08:00

17 lines
273 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_6.x | bash - \
&& apt-get install -y nodejs
CMD /bin/bash