diff --git a/api/.dockerignore b/api/.dockerignore index b7dab5e..11c409f 100644 --- a/api/.dockerignore +++ b/api/.dockerignore @@ -1,2 +1,5 @@ node_modules -build \ No newline at end of file +.nyc_output +.env +.git +*.log \ No newline at end of file diff --git a/api/Dockerfile b/api/Dockerfile index 3af5e02..eaec18b 100644 --- a/api/Dockerfile +++ b/api/Dockerfile @@ -17,4 +17,5 @@ EXPOSE 7085 RUN chmod +x ./container-entrypoint.sh ENTRYPOINT ["./container-entrypoint.sh"] + CMD ["node", "index.js"] \ No newline at end of file