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 cdc987a commit af31eedCopy full SHA for af31eed
Dockerfile
@@ -0,0 +1,19 @@
1
+# Just a dummy Dockerfile to test the code-reviewer-action
2
+FROM node:10
3
+
4
+# Create app directory
5
+RUN mkdir -p /usr/src/app
6
+WORKDIR /usr/src/app
7
8
+# Install NPM
9
+COPY package.json /usr/src/app/
10
+RUN npm install
11
12
+# testing the security detection
13
+RUN echo Password is `cat /cfg/password.txt`
14
15
+# Bundle app source
16
+COPY . /usr/src/app
17
+EXPOSE 8808
18
19
+CMD ["npm","start"]
0 commit comments