This commit is contained in:
Simon Priet
2021-09-05 22:53:58 +02:00
commit 9e2991e668
17888 changed files with 1263126 additions and 0 deletions

18
node_modules/getos/tests/ubuntu/13.10/Dockerfile generated vendored Normal file
View File

@@ -0,0 +1,18 @@
FROM ubuntu:13.10
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"]

18
node_modules/getos/tests/ubuntu/14.04/Dockerfile generated vendored Normal file
View File

@@ -0,0 +1,18 @@
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"]