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
examples/ssh is a nice place to start with the VPN
Many things don't work on -alpine images - e.g. pip3 install ray in my case, but this seems more general (from this article(...) some teams are moving away from alpine because these images can cause compatibility issues that are hard to debug. Specifically, if using python images, some wheels are built to be compatible with Debian and will need to be recompiled to work with an Apline-based image.
Running the same example on a -slim image requires some non-trivial (... for me) changes.
I think these non-trivial changes include:
RUN apt-get update
RUN apt-get install -y openssh-server iproute2 tcpdump net-tools screen
examples/ssh
is a nice place to start with the VPN-alpine
images - e.g.pip3 install ray
in my case, but this seems more general (from this article(...) some teams are moving away from alpine because these images can cause compatibility issues that are hard to debug. Specifically, if using python images, some wheels are built to be compatible with Debian and will need to be recompiled to work with an Apline-based image.
-slim
image requires some non-trivial (... for me) changes.I think these non-trivial changes include:
instead of
and
instead of
The text was updated successfully, but these errors were encountered: