We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a1ae28 commit 888c3daCopy full SHA for 888c3da
Dockerfile
@@ -18,13 +18,11 @@ WORKDIR /usr/src/parse
18
19
# Copy only the required files from the builder stage
20
COPY --from=builder /usr/src/parse/node_modules ./node_modules
21
-COPY --from=builder /usr/src/parse/dist ./dist
+COPY --from=builder /usr/src/parse/dist ./
22
COPY --from=builder /usr/src/parse/public ./public
23
24
-ENV APP_ID=setYourAppId
25
-ENV MASTER_KEY=setYourMasterKey
26
-ENV DATABASE_URI=setMongoDBURI
+VOLUME ["/usr/src/parse/cloud", "/usr/src/parse/logs"]
27
28
EXPOSE 1337
29
30
-CMD ["node", "dist/index.js"]
+CMD ["node", "index.js"]
0 commit comments