enzostvs HF Staff chris-rannou HF Staff commited on
Commit
8f9be84
·
verified ·
1 Parent(s): 3012bf4

fix: use latest working version (#447)

Browse files

- fix: use latest working version (33184e42e1a6c1a81c6595522e6d0a6e89ced8f0)


Co-authored-by: Christophe Rannou <[email protected]>

Files changed (1) hide show
  1. Dockerfile +11 -10
Dockerfile CHANGED
@@ -1,15 +1,16 @@
1
- FROM node:22
 
2
 
3
- USER 1000
4
- WORKDIR /usr/src/app
5
 
6
- # Copy the rest of the application files to the container
7
- COPY --chown=1000 . .
8
 
9
- RUN npm install && npm run build
10
 
11
- # Expose the application port (assuming your app runs on port 3000)
12
- EXPOSE 3000
13
 
14
- # Start the application
15
- CMD ["npm", "start"]
 
1
+ FROM registry.hf.space/enzostvs-deepsite:cpu-bbc7882
2
+ # FROM node:22
3
 
4
+ # USER 1000
5
+ # WORKDIR /usr/src/app
6
 
7
+ # # Copy the rest of the application files to the container
8
+ # COPY --chown=1000 . .
9
 
10
+ # RUN npm install && npm run build
11
 
12
+ # # Expose the application port (assuming your app runs on port 3000)
13
+ # EXPOSE 3000
14
 
15
+ # # Start the application
16
+ # CMD ["npm", "start"]