Skip to content

Commit

Permalink
fixed dockerfile and test.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikelle Wade committed Feb 15, 2024
1 parent 4672458 commit b9a65a6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:16.10.0-alpine3.14
FROM node:20.11.0-alpine3.18

LABEL maintainer="chris.adadev.org"

Expand All @@ -15,5 +15,5 @@ ADD $SUBMISSION_SUBFOLDER /app
# for Testing
# ADD . .

RUN yarn install
RUN npm install
RUN chmod +x test.sh
2 changes: 1 addition & 1 deletion test.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/sh

CI=true yarn test
CI=true npm run test

0 comments on commit b9a65a6

Please sign in to comment.