Skip to content

Commit

Permalink
chore(#641): fix lagoon build issue
Browse files Browse the repository at this point in the history
* chore(#641): workaround for deasync

* chore(#641): add missing dependency
  • Loading branch information
Decipher authored Jul 3, 2023
1 parent e46a329 commit b2f2243
Show file tree
Hide file tree
Showing 3 changed files with 275 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/nuxt/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
FROM amazeeio/node:14-builder as builder
FROM amazeeio/node:16-builder as builder

# Build source files.
COPY . /app/
RUN yarn
RUN yarn || true
RUN yarn build
RUN yarn build:docs

# Build static files.
FROM amazeeio/node:14
FROM amazeeio/node:16
COPY --from=builder /app/docs/nuxt /app

RUN yarn
RUN yarn || true
RUN yarn generate

ENV HOST 0.0.0.0
Expand Down
1 change: 1 addition & 0 deletions docs/nuxt/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"nuxt-social-meta": "1.0.0"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@nuxt/postcss8": "1.1.3",
"@nuxtjs/google-analytics": "2.4.0",
"@nuxtjs/pwa": "3.3.5",
Expand Down
Loading

0 comments on commit b2f2243

Please sign in to comment.