combine.fm/Containerfile
Jonathan Cremin 91d9af097d
All checks were successful
ci / build-image (push) Successful in 2m26s
Upgrade node to 22.16
2025-06-12 16:55:27 +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"]