All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 33s
10 lines
135 B
Docker
10 lines
135 B
Docker
FROM node:lts AS runtime
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN npm install
|
|
RUN npm run build
|
|
|
|
EXPOSE 4321
|
|
CMD ["node", "./dist/server/entry.mjs"] |