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 f804b60 commit b8b370dCopy full SHA for b8b370d
Dockerfile
@@ -1,12 +1,12 @@
1
FROM node:lts-alpine
2
3
RUN mkdir parse-hipaa-dashboard
4
-WORKDIR ./parse-hipaa-dashboard/
+WORKDIR ./parse-hipaa-dashboard
5
COPY . .
6
7
8
# Install remaining dev dependencies
9
RUN npm install
10
11
ENTRYPOINT []
12
-CMD ["node", "index.js"]
+CMD ["node", "./src/index.js"]
app.json
@@ -30,7 +30,7 @@
30
"required": true
31
},
32
"PARSE_DASHBOARD_USER_PASSWORD": {
33
- "description": "Specify the user password to connect with. Can use a site to hash your password, https://bcrypt-generator.com.",
+ "description": "Specify the user password to connect with. This is a password in plain text.",
34
35
36
"PARSE_DASHBOARD_COOKIE_SESSION_SECRET": {
0 commit comments