We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug Was reported by the team that while developing the app the docker was not updating changes on the application correctly.
Steps to Reproduce
Expected behavior When the code is changed, it, immediately, must reflect the changes in the application.
The text was updated successfully, but these errors were encountered:
The error was happening because of 2 factors:
botFlow
botflow
FROM node:10-jessie-slim RUN mkdir /botflow WORKDIR /botflow COPY ./app . EXPOSE 3000 CMD ["sh", "-c", "yarn install && yarn start"]
package.json
COPY /app/package.json .
Sorry, something went wrong.
Also, to optimize the Dockerfile was added the following line:
RUN yarn install # cache the command CMD ["sh", "-c", "yarn start"]
mansogf
No branches or pull requests
Describe the bug
Was reported by the team that while developing the app the docker was not updating changes on the application correctly.
Steps to Reproduce
Expected behavior
When the code is changed, it, immediately, must reflect the changes in the application.
The text was updated successfully, but these errors were encountered: