Files
learn/pelajaran-2/Dockerfile
T

6 lines
88 B
Docker

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