6 lines
87 B
Docker
6 lines
87 B
Docker
FROM docker.io/node:alpine
|
|
WORKDIR /src
|
|
COPY . ./
|
|
RUN npm install
|
|
|
|
CMD [ "node", "." ]
|