storj/web/satellite/Dockerfile
2020-12-20 17:20:19 +01:00

10 lines
247 B
Docker

FROM node:14.15.3 as satellite-ui
WORKDIR /app
COPY web/satellite/ /app
COPY web/satellite/entrypoint /entrypoint
# Need to clean up (or ignore) local folders like node_modules, etc...
RUN npm install
RUN npm run build
ENTRYPOINT ["/entrypoint"]