10 lines
247 B
Docker
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"]
|