You can not 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:latest as build
|
|
|
|
WORKDIR /usr/src/app
|
|
ADD . /usr/src/app
|
|
|
|
ENV GATSBY_TELEMETRY_DISABLED 1
|
|
RUN yarn
|
|
RUN yarn build
|
|
|
|
FROM gatsbyjs/gatsby
|
|
COPY --from=build /usr/src/app/public /pub
|