pngwn HF staff commited on
Commit
22b09f8
1 Parent(s): 02167dd

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -3
Dockerfile CHANGED
@@ -2,12 +2,15 @@
2
  # you will also find guides on how best to write your Dockerfile
3
 
4
  FROM node:19
5
- CMD ["ls", "-a"]
6
  WORKDIR /app
 
7
  COPY . .
8
- CMD ["ls", "-a"]
 
9
  RUN npm i
10
  RUN npm run build
 
 
11
  ENV PORT=7860
12
- CMD ["ls", "-a"]
13
  CMD ["node", "build"]
 
2
  # you will also find guides on how best to write your Dockerfile
3
 
4
  FROM node:19
5
+ RUN ls -a
6
  WORKDIR /app
7
+
8
  COPY . .
9
+ RUN ls -a
10
+
11
  RUN npm i
12
  RUN npm run build
13
+ RUN ls -a
14
+
15
  ENV PORT=7860
 
16
  CMD ["node", "build"]