ci: fix Dockerfile build
This commit is contained in:
parent
92c90b40ee
commit
bc8e08ba47
12
Dockerfile
12
Dockerfile
@ -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
|
||||||
|
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user