Spaces:
Sleeping
Sleeping
File size: 327 Bytes
60f878e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | FROM node:20 AS builder
WORKDIR /builder
COPY . /builder
RUN npm install \
&& npm run build
FROM lipanski/docker-static-website:2.4.0
WORKDIR /home/static
COPY --from=builder /builder/dist/apps/web/ /home/static
EXPOSE 7860
CMD ["/busybox-httpd", "-f", "-v", "-p", "7860", "-c", "httpd.conf"] |