mirror of
https://github.com/52North/ecmwf-dataset-crawl
synced 2025-03-12 16:00:54 +01:00
13 lines
226 B
Docker
13 lines
226 B
Docker
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
|