different debian version
This commit is contained in:
parent
97cd90480b
commit
2a9f7f09fe
4 changed files with 6 additions and 6 deletions
|
|
@ -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 \
|
||||||
|
|
|
||||||
|
|
@ -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">
|
||||||
|
|
|
||||||
|
|
@ -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",
|
||||||
|
|
|
||||||
|
|
@ -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": {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue