Skip to content

Commit

Permalink
feat: update description and validation max values
Browse files Browse the repository at this point in the history
  • Loading branch information
WayneGoosen committed Sep 12, 2024
1 parent 665ba99 commit 974e4cd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
heroImage: /src/assets/images/streamlitdocker.png
category: Containers
description: 'A step-by-step guide on containerizing a Streamlit application using Docker, detailing the creation of a Dockerfile and the commands needed to build and run the container.'
description: 'A guide to containerizing a Streamlit app with Docker, covering how to create a Dockerfile, and the commands to build and run the container efficiently.'
pubDate: 'June 16 2024'
tags:
- docker
Expand Down
4 changes: 2 additions & 2 deletions src/content/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ const blog = defineCollection({
// Type-check frontmatter using a schema
schema: ({ image }) =>
z.object({
title: z.string().max(80),
description: z.string(),
title: z.string().max(60),
description: z.string().max(158),
// Transform string to Date object
pubDate: z
.string()
Expand Down

0 comments on commit 974e4cd

Please sign in to comment.