You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to run the operator-sdk within a Docker container for some e2e purposes based on Ubuntu 18.04. To install it, I've put in the container the following:
RUN sudo apt-get install -y \
python3.7 \
python3-pip
Then, I install it via pip3 install operator-courier and the version I got is the latest.
In a Makefile that I need to run, on of the recipes contain the following command:
Hello all,
I'm trying to run the
operator-sdk
within a Docker container for some e2e purposes based on Ubuntu 18.04. To install it, I've put in the container the following:Then, I install it via
pip3 install operator-courier
and the version I got is the latest.In a
Makefile
that I need to run, on of the recipes contain the following command:and the moment this line is executed, I'm getting:
When I ran it locally with the same version of the CLI, everything works fine.
I've tried to change my locale in the container by adding:
Unfortunately, this didn't help.
I also tried to install the binary like
LANG="en_US.UTF-8" pip3 install operator-courier
.This didn't help either.
I imagine I'm missing some dependency. Any suggestion would be very helpful!
Thanks a lot in advance.
P.S.: Not sure if it's a Python related problem as described here.
The text was updated successfully, but these errors were encountered: