You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
FROM node:10-alpine as build
|
|
|
|
WORKDIR /usr/src
|
|
COPY yarn.lock package.json ./
|
|
RUN yarn
|
|
COPY . .
|
|
ENV API_URL ./api
|
|
ENV KIBANA_URL ./kibana
|
|
RUN yarn build
|
|
|
|
FROM busybox:latest
|
|
COPY --from=build /usr/src/dist /dist
|
|
CMD /bin/true
|