Added Docker container and compose definitions to make development easier
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Gregory Ballantine
2026-07-24 11:00:35 -04:00
parent 6ac189a72c
commit 58dd358acb
5 changed files with 75 additions and 38 deletions
+11
View File
@@ -0,0 +1,11 @@
# Node.js runtime
FROM node:24
WORKDIR /var/www/html/
COPY package.* /var/www/html/
RUN npm install
# Run the app
CMD [ "npm", "run", "grunt" ]