fgo-ta-com-website/Dockerfile
Firq 3dd1831baa
Some checks failed
/ checking (push) Has been cancelled
changed docker to use preconfigured serve container
2023-12-21 15:38:32 +01:00

16 lines
302 B
Docker

FROM node:lts AS build
WORKDIR /app
COPY . .
RUN npm i
RUN npm run build
FROM forgejo.neshweb.net/firq/website-serve-docker:latest AS runtime
COPY --from=build /app/dist /public
COPY --from=build /app/serve.json /public/serve.json
ENV PORT 8081
EXPOSE 8081
CMD [ "serve", "public/", "-p", "8081" ]