forked from nhost/nhost
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Sync Fork
committed
Nov 25, 2023
1 parent
deda09e
commit ac602f8
Showing
17 changed files
with
1,142 additions
and
352 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM node:16-alpine AS pruner | ||
FROM node:18-alpine AS pruner | ||
RUN apk add --no-cache libc6-compat | ||
RUN apk update | ||
WORKDIR /app | ||
|
@@ -7,7 +7,7 @@ RUN yarn global add [email protected] | |
COPY . . | ||
RUN turbo prune --scope="@nhost/dashboard" --docker | ||
|
||
FROM node:16-alpine AS builder | ||
FROM node:18-alpine AS builder | ||
ARG TURBO_TOKEN | ||
ARG TURBO_TEAM | ||
|
||
|
@@ -40,7 +40,7 @@ COPY turbo.json turbo.json | |
COPY config/ config/ | ||
RUN pnpm build:dashboard | ||
|
||
FROM node:16-alpine AS runner | ||
FROM node:18-alpine AS runner | ||
WORKDIR /app | ||
|
||
RUN addgroup --system --gid 1001 nodejs | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
dashboard/src/components/ui/v2/icons/TerminalIcon/TerminalIcon.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import type { IconProps } from '@/components/ui/v2/icons'; | ||
import { SvgIcon } from '@/components/ui/v2/icons/SvgIcon'; | ||
|
||
function TerminalIcon(props: IconProps) { | ||
return ( | ||
<SvgIcon | ||
width="16" | ||
height="16" | ||
xmlns="http://www.w3.org/2000/svg" | ||
viewBox="0 0 16 16" | ||
aria-label="Trash" | ||
{...props} | ||
> | ||
<path | ||
fillRule="evenodd" | ||
clipRule="evenodd" | ||
d="M3.49851 3.43968L2.93795 2.94141L1.94141 4.06252L2.50196 4.56079L6.37134 8.00024L2.50196 11.4397L1.94141 11.938L2.93795 13.0591L3.49851 12.5608L7.99851 8.56079C8.15863 8.41847 8.25024 8.21446 8.25024 8.00024C8.25024 7.78601 8.15863 7.582 7.99851 7.43968L3.49851 3.43968ZM7.99987 11.2502H7.24987V12.7502H7.99987H13.9999H14.7499V11.2502H13.9999H7.99987Z" | ||
fill="currentColor" | ||
/> | ||
</SvgIcon> | ||
); | ||
} | ||
|
||
TerminalIcon.displayName = 'NhostTerminalIcon'; | ||
|
||
export default TerminalIcon; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export { default as TerminalIcon } from './TerminalIcon'; |
Oops, something went wrong.