9 lines
219 B
Docker
9 lines
219 B
Docker
# specify the node base image with your desired version node:<version>
|
|
FROM node:16
|
|
# replace this with your application's default port
|
|
EXPOSE 11141
|
|
|
|
COPY / /home/node/app/
|
|
WORKDIR /home/node/app/server
|
|
RUN npm install
|