firq-dev-website/Dockerfile

18 lines
354 B
Docker
Raw Normal View History

2023-12-20 23:16:39 +00:00
FROM node:lts AS build
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
2024-06-20 16:58:29 +00:00
FROM forgejo.neshweb.net/ci-docker-images/website-serve:0.1.3 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
2024-07-20 14:56:29 +00:00
ENV PORT=8081
2023-12-20 23:16:39 +00:00
EXPOSE 8081
2024-07-20 14:56:29 +00:00
CMD serve public/ -p ${PORT}