Files
blt/Dockerfile.grunt
Gregory Ballantine 58dd358acb
ci/woodpecker/push/woodpecker Pipeline was successful
Added Docker container and compose definitions to make development easier
2026-07-24 11:00:35 -04:00

12 lines
148 B
Docker

# 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" ]