Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
FROM debian
|
2 |
RUN mkdir -p /app
|
3 |
-
RUN apt install nodejs npm
|
4 |
RUN npm install express nodejs
|
5 |
|
6 |
COPY <<EOF /app/index.js
|
|
|
1 |
FROM debian
|
2 |
RUN mkdir -p /app
|
3 |
+
RUN apt-get update -y && apt-get install -y nodejs npm
|
4 |
RUN npm install express nodejs
|
5 |
|
6 |
COPY <<EOF /app/index.js
|