We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 786dfdb commit c4b8fb4Copy full SHA for c4b8fb4
Dockerfile
@@ -0,0 +1,11 @@
1
+FROM alpine:3.18.6
2
+
3
+RUN mkdir npmExample
4
5
+WORKDIR /npmExample
6
7
+COPY node_modules/* node_modules/
8
+COPY package-lock.json .
9
+COPY package.json .
10
+# activating python script
11
+CMD ["ls", "npmExample"]
0 commit comments