6 lines
85 B
Docker
6 lines
85 B
Docker
FROM node
|
|
WORKDIR /
|
|
COPY . .
|
|
RUN yarn build
|
|
CMD ["node", "dist/lib/server/index.js"]
|