sbrandeis HF staff commited on
Commit
9f45aaa
1 Parent(s): 61b2939

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -3
README.md CHANGED
@@ -135,13 +135,14 @@ RUN apt-get update && \
135
  htop vim nano && \
136
  rm -rf /var/lib/apt/lists/*
137
 
 
138
  WORKDIR /app
139
- COPY --link --chown=1000 ./ /app
140
- RUN npm i
141
 
142
  RUN chown 1000 /app
143
  USER 1000
144
- CMD ["node", "index.mjs"]
145
  ```
146
 
147
  There are several examples of Dev Mode compatible Docker Spaces in this organization.
 
135
  htop vim nano && \
136
  rm -rf /var/lib/apt/lists/*
137
 
138
+
139
  WORKDIR /app
140
+ COPY --link ./ /app
141
+ RUN npm i
142
 
143
  RUN chown 1000 /app
144
  USER 1000
145
+ CMD ["node", "index.js"]
146
  ```
147
 
148
  There are several examples of Dev Mode compatible Docker Spaces in this organization.