diff --git a/App/v1/Dockerfile b/App/v1/Dockerfile index 6b23026..5a180c9 100644 --- a/App/v1/Dockerfile +++ b/App/v1/Dockerfile @@ -12,4 +12,5 @@ RUN cd /src; npm install EXPOSE 8080 # Run this command (starts the app) when the container starts -CMD cd /src && node ./app.js +WORKDIR /src +CMD ["node", "./app.js"]