firq-dev-website/Dockerfile

17 lines
333 B
Docker
Raw Permalink Normal View History

2023-12-20 23:16:39 +00:00
FROM node:lts AS build
WORKDIR /app
COPY . .
RUN npm i
RUN npm run build
2023-12-21 14:47:23 +00:00
FROM forgejo.neshweb.net/firq/website-serve-docker:latest AS runtime
2023-12-20 23:16:39 +00:00
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" ]