Update Dockerfile

This commit is contained in:
Nariman Jelveh 2024-07-18 13:33:02 -07:00
parent 8b5f58c156
commit 5a4328e449

View File

@ -23,6 +23,9 @@ COPY package*.json ./
# Copy the source files
COPY . .
# Install mocha
RUN npm install -g mocha
# Install node modules
RUN npm cache clean --force && \
for i in 1 2 3; do \