All checks were successful
Build and Deploy / Deploy (push) Successful in 1m49s
11 lines
117 B
Docker
11 lines
117 B
Docker
FROM node:18
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY ./construction/.output .
|
|
|
|
EXPOSE 3000
|
|
|
|
CMD [ "node", "server/index.mjs" ]
|
|
|