From 38030cd1e7756b7198b3184074fcbf58ed085442 Mon Sep 17 00:00:00 2001 From: hannah-macdonald1 Date: Mon, 21 Oct 2024 17:19:34 -0600 Subject: [PATCH] add husky folder to copy step to avoid error --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d0a8cdb..b53189a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ FROM node:22-alpine WORKDIR /app # Copy the package.json and package-lock.json files -COPY package*.json ./ +COPY package*.json ./ .husky/ # Install the dependencies RUN npm install