ci: fix Dockerfile build
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Kieran 2023-10-06 13:56:41 +01:00
parent 92c90b40ee
commit bc8e08ba47
Signed by: Kieran
GPG Key ID: DE71CEB3925BE941
2 changed files with 6 additions and 8 deletions

View File

@ -1,12 +1,10 @@
FROM node:16 as build FROM node:19 as build
WORKDIR /app WORKDIR /app
COPY package.json yarn.lock . COPY package.json yarn.lock .yarnrc.yml .
COPY packages/app/package.json packages/app/ COPY .yarn .yarn
COPY packages/nostr/package.json packages/nostr/ COPY packages packages
RUN yarn install --network-timeout 1000000 RUN yarn --network-timeout 1000000
COPY . .
RUN yarn build RUN yarn build
FROM nginxinc/nginx-unprivileged:mainline-alpine FROM nginxinc/nginx-unprivileged:mainline-alpine

View File

@ -1,5 +1,5 @@
import IconProps from "./IconProps"; import IconProps from "./IconProps";
import "./Spinner.css"; import "./spinner.css";
const Spinner = (props: IconProps) => ( const Spinner = (props: IconProps) => (
<svg <svg