Add pelajaran 1 (Nginx) and pelajaran 2 (Node) lab starters.

This commit is contained in:
sayudhalw
2026-07-16 12:53:06 +07:00
commit 5e1c4f797d
6 changed files with 123 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
FROM node:22-alpine
WORKDIR /app
COPY server.js .
EXPOSE 3000
CMD ["node", "server.js"]