Skip to content

Commit f5efbbd

Browse files
authored
chore: adds docker demo to Dylan's lesson 24 submission (#667)
Signed-off-by: Anthony D. Mays <[email protected]>
1 parent 0c1a8d6 commit f5efbbd

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

lesson_24/dylanlafferty/Dockerfile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
FROM node:20-bullseye
2+
3+
WORKDIR /app
4+
5+
COPY . .
6+
7+
RUN npm install
8+
9+
CMD ["node", "index.js"]

0 commit comments

Comments
 (0)