hostr/Containerfile
Jonathan Cremin 58d41d492a
All checks were successful
ci / build-image (push) Successful in 2m52s
Update node version to 22.16
2025-06-12 16:07:15 +01:00

17 lines
177 B
Docker

FROM node:22.16
WORKDIR /app
COPY package.json package.json
COPY yarn.lock yarn.lock
RUN yarn
COPY . .
RUN yarn run build
ENV PORT 3000
EXPOSE 3000
CMD ["yarn", "start"]