different debian version

This commit is contained in:
lone-cloud 2026-01-31 03:21:21 -08:00
parent 97cd90480b
commit 2a9f7f09fe
4 changed files with 6 additions and 6 deletions

View file

@ -4,7 +4,7 @@ WORKDIR /app
COPY logs-server.ts . COPY logs-server.ts .
RUN bun build --compile logs-server.ts --outfile server RUN bun build --compile logs-server.ts --outfile server
FROM debian:13.3-slim FROM debian:13.3
RUN apt-get update && apt-get install -y --no-install-recommends \ RUN apt-get update && apt-get install -y --no-install-recommends \
nginx \ nginx \

View file

@ -4,9 +4,9 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Snowflake Dashboard</title> <title>Snowflake Dashboard</title>
<link rel="icon" type="image/svg+xml" href="favicon.svg?v=1.4.1" media="(prefers-color-scheme: light)"> <link rel="icon" type="image/svg+xml" href="favicon.svg?v=1.4.2" media="(prefers-color-scheme: light)">
<link rel="icon" type="image/svg+xml" href="favicon-dark.svg?v=1.4.1" media="(prefers-color-scheme: dark)"> <link rel="icon" type="image/svg+xml" href="favicon-dark.svg?v=1.4.2" media="(prefers-color-scheme: dark)">
<link rel="stylesheet" href="styles.css?v=1.4.1"> <link rel="stylesheet" href="styles.css?v=1.4.2">
</head> </head>
<body> <body>
<div class="grid grid-top"> <div class="grid grid-top">

View file

@ -5,7 +5,7 @@ Bun.serve({
const path = url.pathname; const path = url.pathname;
const proc = Bun.spawn([ const proc = Bun.spawn([
"/usr/bin/docker", "docker",
"logs", "logs",
"--tail", "--tail",
"500", "500",

View file

@ -1,6 +1,6 @@
{ {
"name": "snowflake-dashboard", "name": "snowflake-dashboard",
"version": "1.4.1", "version": "1.4.2",
"type": "module", "type": "module",
"license": "AGPL-3.0", "license": "AGPL-3.0",
"scripts": { "scripts": {