All checks were successful
Docker Deploy / build-and-push (push) Successful in 1m10s
13 lines
187 B
Docker
13 lines
187 B
Docker
FROM node:lts-alpine as runtime
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN npm i -g pnpm
|
|
RUN pnpm install
|
|
RUN pnpm run build
|
|
|
|
ENV HOST=0.0.0.0
|
|
ENV PORT=4321
|
|
EXPOSE 4321
|
|
CMD node ./dist/server/entry.mjs
|