From df822021781d836e48b827726fc0c520a553ca2d Mon Sep 17 00:00:00 2001 From: mamoodi Date: Thu, 26 Dec 2024 20:06:27 -0500 Subject: [PATCH] Fix formatting in docs (#5842) --- docs/modules/usage/prompting/microagents.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/docs/modules/usage/prompting/microagents.md b/docs/modules/usage/prompting/microagents.md index af7893d062..69bff7fed8 100644 --- a/docs/modules/usage/prompting/microagents.md +++ b/docs/modules/usage/prompting/microagents.md @@ -176,24 +176,20 @@ Guidelines: Examples: 1. Creating a Dockerfile: - ```dockerfile FROM node:18-alpine WORKDIR /app COPY package*.json ./ RUN npm install COPY . . CMD ["npm", "start"] - ``` 2. Docker Compose usage: - ```yaml version: '3' services: web: build: . ports: - "3000:3000" - ``` Remember to: - Validate Dockerfile syntax