From 3036214ca78c7f85defe669158e7bd94982bdc2c Mon Sep 17 00:00:00 2001 From: vnugent Date: Fri, 18 Jul 2025 11:50:20 -0400 Subject: [PATCH] chore(readme): correct the readme for container builds - Removed the plain docker build since we didn't have a docker file, those instructions didnt work - Corrected the deno container build instructions --- README.md | 33 +-------------------------------- 1 file changed, 1 insertion(+), 32 deletions(-) diff --git a/README.md b/README.md index 5615dac..274657e 100644 --- a/README.md +++ b/README.md @@ -69,37 +69,6 @@ or with Deno: deno task preview ``` -## Docker - -This docker container performs the build. - -To build the container: - -```bash -docker build . -t gc-alexandria -``` - -To run the container, in detached mode (-d): - -```bash -docker run -d --rm --name=gc-alexandria -p 4174:80 gc-alexandria -``` - -The container is then viewable on your [local machine](http://localhost:4173). - -If you want to see the container process (assuming it's the last process to start), enter: - -```bash -docker ps -l -``` - -which should return something like: - -```bash -CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES -1d83d736322f gc-alexandria "/docker-entrypoint.…" 2 minutes ago Up 2 minutes 0.0.0.0:4174->80/tcp, [::]:4174->80/tcp gc-alexandria -``` - ## Docker + Deno This application is configured to use the Deno runtime. A Docker container is provided to handle builds and deployments. @@ -107,7 +76,7 @@ This application is configured to use the Deno runtime. A Docker container is pr To build the app for local development: ```bash -docker build -t local-alexandria -f Dockerfile.local . +docker build -t local-alexandria -f Dockerfile . ``` To run the local development build: