We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 106bb2b commit 15344aaCopy full SHA for 15344aa
2 files changed
README.md
@@ -15,6 +15,7 @@ Ready-to-use images for NodeJS.
15
16
| NodeJS | OS | Tag |
17
|-----------------|-------------|---------------|
18
+| NodeJS 10 | Alpine v3.8 | v10 |
19
| NodeJS 9 | Alpine v3.7 | v9 |
20
| NodeJS 8 | Alpine v3.7 | v8 |
21
| NodeJS 7 | Alpine v3.6 | v7 |
v10/Dockerfile
@@ -0,0 +1,18 @@
1
+FROM node:10-alpine
2
+
3
+MAINTAINER Milan Sulc <[email protected]>
4
5
+ENV TERM xterm
6
7
+ENV USER_UID 1000
8
+ENV USER_NAME dfx
9
+ENV USER_HOME /home/dfx
10
11
+RUN apk update && \
12
+ apk upgrade && \
13
+ apk --no-cache add shadow && \
14
+ usermod -l $USER_NAME node && \
+ apk del shadow && \
+ rm -rf /var/cache/apk/*
+CMD node
0 commit comments