5 lines
81 B
Docker
5 lines
81 B
Docker
FROM node:alpine
|
|
EXPOSE 4000
|
|
COPY . .
|
|
RUN npm install
|
|
CMD ["node", "./index.mjs"] |