fgo-ta-com-website/Dockerfile
Firq 0701f9a69c
All checks were successful
/ checking (push) Successful in 24s
/ build-site (push) Successful in 2m24s
/ release (push) Successful in 8s
fixing dockerfile
2023-12-20 21:39:10 +01:00

17 lines
304 B
Docker

FROM node:lts AS build
WORKDIR /app
COPY . .
RUN npm i
RUN npm run build
FROM node:lts AS runtime
RUN npm install --global "@warren-bank/serve"
COPY --from=build /app/dist /public
COPY --from=build /app/serve.json /public/serve.json
ENV PORT 5000
EXPOSE 5000
CMD [ "serve", "public/", "-p", "5000" ]