fgo-ta-com-website/Dockerfile

17 lines
335 B
Docker
Raw Normal View History

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