generated from uc-cdis/commons-frontend-app
-
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
1 parent
bc6bda9
commit 290ce4a
Showing
31 changed files
with
3,521 additions
and
168 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,6 +16,8 @@ WORKDIR /gen3 | |
|
||
RUN apt-get update && apt-get install -y --no-install-recommends \ | ||
build-essential \ | ||
python \ | ||
pip \ | ||
libssl1.1 \ | ||
libgnutls30 \ | ||
ca-certificates \ | ||
|
@@ -31,21 +33,17 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ | |
&& npm install -g [email protected] | ||
|
||
RUN addgroup --system --gid 1001 nextjs && adduser --system --uid 1001 nextjs | ||
COPY ./package.json ./package-lock.json ./ | ||
COPY ./package-lock.json ./ | ||
COPY ./package.json ./package-lock.json ./next.config.js /tsconfig.json ./tailwind.config.js ./postcss.config.js ./start.sh ./ | ||
COPY ./src ./src | ||
COPY ./public ./public | ||
COPY ./config ./config | ||
COPY ./next.config.js ./ | ||
COPY ./tsconfig.json ./ | ||
COPY ./.env.development ./ | ||
COPY ./.env.production ./ | ||
COPY ./tailwind.config.js ./ | ||
COPY ./postcss.config.js ./ | ||
COPY ./jupyter-lite ./jupyter-lite | ||
RUN npm ci | ||
RUN npm install \ | ||
"@swc/core" \ | ||
"@napi-rs/magic-string" | ||
"@napi-rs/magic-string" \ | ||
RUN npm run build | ||
ENV PORT=80 | ||
CMD ["npm", "run", "start"] | ||
RUN pip install -r ./jupyter-lite/requirements.txt | ||
RUN jupyter lite build --contents ./jupyter-lite --output-dir dist ./jupyter | ||
ENV PORT=3000 | ||
CMD bash ./start.sh | ||
Check warning on line 49 in Dockerfile GitHub Actions / Build Image and Push to Quay / Build Image and PushJSON arguments recommended for ENTRYPOINT/CMD to prevent unintended behavior related to OS signals
|
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,12 @@ | ||
# TODO For CanineDC | ||
|
||
* Create CountsPanel | ||
* Files Charts | ||
* Expandable Bar Chart List | ||
* Jobs Manager | ||
* Create Selector Facet | ||
* Fix Enum Badge Component | ||
* Create Homepage | ||
* Center Explorer Tabs | ||
* Setup/Test notebook | ||
* Add BAM File visualization |
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,18 +1,34 @@ | ||
{ | ||
"footerRightLogos": [ | ||
[ | ||
"classNames": { | ||
"root": "bg-base-darker", | ||
"layout": "flex items-center justify-end" | ||
}, | ||
"rightSection": { | ||
"columns": [ | ||
{ | ||
"logo": "/images/gen3.png", | ||
"width": 132, | ||
"height": 60, | ||
"description": "Gen3 Logo" | ||
"rows": [ | ||
{ | ||
"Icon": { | ||
"logo": "/icons/gen3.png", | ||
"width": 132, | ||
"height": 60, | ||
"description": "Gen3 Logo" | ||
} | ||
} | ||
] | ||
}, | ||
{ | ||
"logo": "/images/createdby.png", | ||
"width": 170, | ||
"height": 60, | ||
"description": "Created by CTDS" | ||
"rows": [ | ||
{ | ||
"Icon": { | ||
"logo": "/icons/createdby.png", | ||
"width": 170, | ||
"height": 60, | ||
"description": "Created by CTDS" | ||
} | ||
} | ||
] | ||
} | ||
] | ||
] | ||
} | ||
} |
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
Oops, something went wrong.