We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2cdbcac commit cd02885Copy full SHA for cd02885
Dockerfile
@@ -5,6 +5,20 @@ RUN apt-get update && apt-get install -y python3 python3-pip build-essential
5
RUN pip3 install -r requirements.txt
6
RUN gem install --no-ri --no-rdoc fpm
7
8
+# I stole this from the linodemanager-builder to get yarn installed
9
+RUN curl -sL https://deb.nodesource.com/setup_8.x | bash -
10
+
11
+RUN apt-get update \
12
+ && apt-get install -y nodejs
13
14
+RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
15
16
+RUN echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
17
18
19
+ && apt-get install -y yarn
20
+# end stole config
21
22
COPY openapi-linter.py .
23
COPY openapi.yaml .
24
COPY build-docs.sh .
0 commit comments