Public Access
1
0

update Docker and VS Code configurations for improved debugging

This commit is contained in:
2025-08-11 10:50:12 -04:00
parent 6c26b77fb5
commit 103080ba1b
7 changed files with 61 additions and 52 deletions

View File

@@ -4,5 +4,5 @@ WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 8080
CMD [ "npx", "@11ty/eleventy", "--serve" ]
EXPOSE 8080 9229
CMD [ "npm", "start" ]