fgo-ta-com-website/Dockerfile

17 lines
335 B
Text
Raw Permalink Normal View History

2024-07-16 20:21:53 +02:00
FROM node:22-alpine AS build
2024-01-09 20:03:09 +01:00
WORKDIR /site
2023-12-20 20:32:02 +01:00
COPY . .
RUN npm i
RUN npm run astro telemetry disable
2023-12-20 20:32:02 +01:00
RUN npm run build
2024-07-16 20:21:53 +02:00
FROM forgejo.neshweb.net/ci-docker-images/website-serve:2 AS runtime
2023-12-20 20:32:02 +01:00
2024-01-09 20:03:09 +01:00
COPY --from=build /site/dist /public
COPY --from=build /site/serve.json /public/serve.json
2023-12-20 20:32:02 +01:00
2024-07-16 19:30:04 +02:00
ENV PORT=8081
2024-07-16 19:46:53 +02:00
EXPOSE 8081
2023-12-20 20:32:02 +01:00
2024-07-16 19:46:53 +02:00
CMD serve public/ -p ${PORT}