firq-dev-website/Dockerfile

18 lines
354 B
Text
Raw Normal View History

2023-12-21 00:16:39 +01:00
FROM node:lts AS build
WORKDIR /app
COPY . .
RUN npm i
2024-07-20 16:56:29 +02:00
RUN npm run astro telemetry disable
2023-12-21 00:16:39 +01:00
RUN npm run build
2024-06-20 18:58:29 +02:00
FROM forgejo.neshweb.net/ci-docker-images/website-serve:0.1.3 AS runtime
2023-12-21 00:16:39 +01:00
COPY --from=build /app/dist /public
COPY --from=build /app/serve.json /public/serve.json
2023-12-25 18:43:49 +01:00
RUN rm -r /public/data/
2023-12-21 00:16:39 +01:00
2024-07-20 16:56:29 +02:00
ENV PORT=8081
2023-12-21 00:16:39 +01:00
EXPOSE 8081
2024-07-20 16:56:29 +02:00
CMD serve public/ -p ${PORT}