firq-dev-website/Dockerfile
Firq e2328bde46
Some checks failed
/ checking (push) Has been cancelled
updated to new custom docker image
2023-12-21 15:47:23 +01:00

17 lines
333 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
RUN rm -r /public/assets/data/
ENV PORT 8081
EXPOSE 8081
CMD [ "serve", "public/", "-p", "8081" ]