firq-dev-website/Dockerfile

16 lines
338 B
Docker
Raw Permalink Normal View History

FROM node:22-alpine AS build
2023-12-20 23:16:39 +00:00
WORKDIR /app
COPY . .
RUN npm i
2024-07-20 14:56:29 +00:00
RUN npm run astro telemetry disable
2023-12-20 23:16:39 +00:00
RUN npm run build
FROM forgejo.neshweb.net/ci-docker-images/website-serve:2 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
2023-12-25 17:43:49 +00:00
RUN rm -r /public/data/
2023-12-20 23:16:39 +00:00
EXPOSE 8081
CMD serve public/ -p 8081