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
COPY package.json yarn.lock .
COPY packages/app/package.json packages/app/
COPY packages/nostr/package.json packages/nostr/
RUN yarn install --network-timeout 1000000
COPY . .
COPY package.json yarn.lock .yarnrc.yml .
COPY .yarn .yarn
COPY packages packages
RUN yarn --network-timeout 1000000
RUN yarn build
FROM nginxinc/nginx-unprivileged:mainline-alpine

View File

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