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
|
||||
|
||||
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
|
||||
|
@ -1,5 +1,5 @@
|
||||
import IconProps from "./IconProps";
|
||||
import "./Spinner.css";
|
||||
import "./spinner.css";
|
||||
|
||||
const Spinner = (props: IconProps) => (
|
||||
<svg
|
||||
|
Loading…
x
Reference in New Issue
Block a user