Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(github): deploy #29

Merged
merged 1 commit into from
Mar 20, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions site/docker/site.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ LABEL org.opencontainers.image.licenses="BSD 3-Clause License"
COPY package.json bun.lock tsconfig.json ./
COPY scripts ./scripts
COPY site ./site
COPY public ./public

RUN bun install \
&& bun site:build
Expand All @@ -25,6 +26,6 @@ WORKDIR /app

COPY --from=builder /app/site/dist/ ./site
COPY --from=builder /app/node_modules/jsdom/lib/jsdom/living/xhr/xhr-sync-worker.js /app/node_modules/jsdom/lib/jsdom/living/xhr/xhr-sync-worker.js
COPY public ./public
COPY --from=builder /app/public ./public

CMD ["/app/site/bundle"]
CMD ["bun", "/app/site/index.js"]
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@
gap: var(--GRID-GAP-2);
}

:global(.node-info .node-title) {
margin: 0;
}
/* FIX */
/* :global(.node-info .node-title) { */
/* margin: 0; */
/* } */

@media screen and (max-width: 650px) {
.node-info__data-wrapper {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@
flex-direction: column;
gap: var(--GRID-GAP-2);
}
:global(.add-node__container *) {
margin: 0;
}
/* FIX */
/* :global(.add-node__container *) { */
/* margin: 0; */
/* } */
.add-node__input-container {
width: 100%;
display: flex;
Expand Down