mirror of https://github.com/lukechilds/docs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
358 B
18 lines
358 B
FROM ubuntu:14.04
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y --force-yes \
|
|
curl \
|
|
apt-transport-https \
|
|
lsb-release \
|
|
build-essential \
|
|
python-all
|
|
|
|
RUN curl -sL https://deb.nodesource.com/setup | bash -
|
|
RUN apt-get update
|
|
RUN apt-get install nodejs -y --force-yes
|
|
|
|
ADD . /usr/src/
|
|
WORKDIR /usr/src/
|
|
|
|
CMD ["node","test.js"]
|
|
|