update to latest rust docker base

This commit is contained in:
mbecker20
2024-08-10 11:31:52 -07:00
parent d28d3422a3
commit 707751708d
3 changed files with 3 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
# Build Core
FROM rust:1.80.0-bookworm AS core-builder
FROM rust:1.80.1-bookworm AS core-builder
WORKDIR /builder
COPY . .
RUN cargo build -p monitor_core --release

View File

@@ -1,4 +1,4 @@
FROM rust:1.79.0-bookworm AS builder
FROM rust:1.80.1-bookworm AS builder
WORKDIR /builder
COPY . .
RUN cargo build -p migrator --release

View File

@@ -26,7 +26,7 @@ export const useServerTemplate = (id?: string) =>
export const ServerTemplateComponents: RequiredResourceComponents = {
list_item: (id) => useServerTemplate(id),
Description: () => <>Deploy more cloud-base VPS on button click.</>,
Description: () => <>Deploy more cloud-based servers on a button click.</>,
Dashboard: () => {
const count = useRead("ListServerTemplates", {}).data?.length;