firq-dev-website/Dockerfile
Firq 394e575ca6
All checks were successful
/ checking (push) Successful in 16s
Pinned docker images
2024-06-20 18:58:29 +02:00

17 lines
330 B
Docker

FROM node:lts AS build
WORKDIR /app
COPY . .
RUN npm i
RUN npm run build
FROM forgejo.neshweb.net/ci-docker-images/website-serve:0.1.3 AS runtime
COPY --from=build /app/dist /public
COPY --from=build /app/serve.json /public/serve.json
RUN rm -r /public/data/
ENV PORT 8081
EXPOSE 8081
CMD [ "serve", "public/", "-p", "8081" ]