combine.fm/Containerfile

18 lines
177 B
Text
Raw Permalink Normal View History

2025-06-12 16:44:06 +01:00
FROM node:22.16
2017-07-23 10:13:04 +01:00
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"]