Skip to content

Commit c4b8fb4

Browse files
authored
Create Dockerfile
1 parent 786dfdb commit c4b8fb4

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

Dockerfile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)