Spaces:
Running
Running
Update README.md
Browse files
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
|
140 |
-
RUN npm i
|
141 |
|
142 |
RUN chown 1000 /app
|
143 |
USER 1000
|
144 |
-
CMD ["node", "index.
|
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.
|