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 bf6401c commit 357c24bCopy full SHA for 357c24b
.dockerignore
@@ -10,7 +10,7 @@ coverage
10
.nyc_output
11
12
# Environment (contains sensitive data)
13
-.env
+
14
15
# Files not required for production
16
.editorconfig
docker/Dockerfile
@@ -1,5 +1,5 @@
1
2
-FROM node:latest
+FROM node:14.15.0
3
4
# Set working directory. Paths will be relative this WORKDIR.
5
WORKDIR /usr/src/app
@@ -13,9 +13,5 @@ RUN npm install
# Copy source files from host computer to the container
COPY . .
-
17
-# Specify port app runs on
18
-EXPOSE 3000
19
20
# Run the app
21
CMD [ "node", "app.js" ]
0 commit comments