From aee0079f9746760ec32b1cf622b2f5fc13a0402a Mon Sep 17 00:00:00 2001 From: Pradumna Saraf Date: Wed, 12 Feb 2025 20:31:43 +0530 Subject: [PATCH] Update content/guides/deno/containerize.md Co-authored-by: Craig Osterhout <103533812+craig-osterhout@users.noreply.github.com> --- content/guides/deno/containerize.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/guides/deno/containerize.md b/content/guides/deno/containerize.md index 2a2eb3d9e5..beaff49817 100644 --- a/content/guides/deno/containerize.md +++ b/content/guides/deno/containerize.md @@ -88,7 +88,7 @@ EXPOSE 8000 CMD ["run", "--allow-net", "server.ts"] ``` -Aside from specifying `denoland/deno:latest` as the base image, the Dockerfile +Aside from specifying `denoland/deno:latest` as the base image, the Dockerfile: - Sets the working directory in the container to `/app` - Copies `server.ts` into the container.