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
I want to add openpyxl to the installed packaged ( it is not by default).
I added this to /ces_container/Dockerfile
COPY requirements.txt . RUN pip install --no-cache-dir --no-warn-script-location -r requirements.txt
RUN pip install --no-cache-dir --no-warn-script-location --user openpyxl
for good measure, I added openpyxl to requirements.txt too.
when I run ./build_executor, It creates a docker image that contains openpyxl. All good.
When I enter a prompt that executes code, TW finds that the image installed is not right, so I pulls :latest from docker.io.
Can someone offer some guidance?
The text was updated successfully, but these errors were encountered:
Thanks for raising this issue. The current behavior is TW always downloads the :last image from docker.io. A next PR is planned to fix this issue.
Sorry, something went wrong.
No branches or pull requests
I want to add openpyxl to the installed packaged ( it is not by default).
I added this to /ces_container/Dockerfile
Copy the requrements file
COPY requirements.txt .
RUN pip install --no-cache-dir --no-warn-script-location -r requirements.txt
TODO: Install additional packages for plugins
RUN pip install --no-cache-dir --no-warn-script-location --user openpyxl
for good measure, I added openpyxl to requirements.txt too.
when I run ./build_executor, It creates a docker image that contains openpyxl. All good.
When I enter a prompt that executes code, TW finds that the image installed is not right, so I pulls :latest from docker.io.
Can someone offer some guidance?
The text was updated successfully, but these errors were encountered: