From 996ff658071e8525462a2bf176bf1f4e63e4567b Mon Sep 17 00:00:00 2001 From: Pradumna Saraf Date: Wed, 12 Feb 2025 20:31:51 +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 beaff49817..0777ed25a7 100644 --- a/content/guides/deno/containerize.md +++ b/content/guides/deno/containerize.md @@ -90,7 +90,7 @@ CMD ["run", "--allow-net", "server.ts"] Aside from specifying `denoland/deno:latest` as the base image, the Dockerfile: -- Sets the working directory in the container to `/app` +- Sets the working directory in the container to `/app`. - Copies `server.ts` into the container. - Sets the user to `deno` to run the application as a non-root user. - Exposes port 8000 to allow traffic to the application.