From b9a65a68e0ced6b7f847122441d272673d219aed Mon Sep 17 00:00:00 2001 From: Mikelle Wade Date: Thu, 15 Feb 2024 14:06:03 -0500 Subject: [PATCH] fixed dockerfile and test.sh --- Dockerfile | 4 ++-- test.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index e335ec2b9..23cf01734 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:16.10.0-alpine3.14 +FROM node:20.11.0-alpine3.18 LABEL maintainer="chris.adadev.org" @@ -15,5 +15,5 @@ ADD $SUBMISSION_SUBFOLDER /app # for Testing # ADD . . -RUN yarn install +RUN npm install RUN chmod +x test.sh diff --git a/test.sh b/test.sh index bbf5f995f..ff7cbf34c 100644 --- a/test.sh +++ b/test.sh @@ -1,3 +1,3 @@ #!/bin/sh -CI=true yarn test +CI=true npm run test