minor adjustments to dockerfile and version increment
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
60f1ea9339
commit
ccdb038817
|
|
@ -12,4 +12,4 @@ steps:
|
|||
registry: registry.while-false.de
|
||||
tags:
|
||||
- 'latest'
|
||||
- '1.3.0'
|
||||
- '1.4.0'
|
||||
|
|
|
|||
|
|
@ -2,9 +2,9 @@ FROM node:14.3 as build
|
|||
WORKDIR /app
|
||||
|
||||
COPY . ./
|
||||
RUN yarn install -s
|
||||
RUN yarn install -s --no-progress --prod
|
||||
RUN yarn global add gatsby-cli
|
||||
RUN gatsby build
|
||||
RUN npx gatsby build
|
||||
|
||||
FROM gatsbyjs/gatsby
|
||||
COPY --from=build /app/public /pub
|
||||
Loading…
Reference in New Issue