Files
learn/pelajaran-2/Dockerfile
T

5 lines
87 B
Docker

FROM node:22-alpine
WORKDIR /app
COPY server.js .
EXPOSE 3000
CMD ["node", "server.js"]