fgo-ta-com-website/Dockerfile
Firq 8e88fd8597
All checks were successful
/ checking (push) Successful in 44s
testing with dockerfile
2023-12-20 20:32:02 +01:00

17 lines
301 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" ]