Replies: 1 comment 1 reply
-
My 2¢:
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
An alpha release of
micromamba
v2.0 dropped today (release notes]. The upcoming release of v2.0 would be a good time to make any breaking changes to the docker images. I have two potential breaking changes to discuss:/tmp
. If the working directory is not set in an image, it defaults to/
. I don't want to use/
as we default to running as a non-root user and/
is not writable as that user. The user should be able to write into the working directory. The/home/mambuser
would be another option, but that gets weird if the user gets changed at runtime (docker run -u my_user:my_group
). Some official docker images put you into an application specific directory (containers such astomcat
,httpd
,wordpress
) and this might be the right approach for us. Right now/opt/conda
(or maybe/opt/micromamba
) is sounding like the right approach to me.I'm interested in hearing thoughts on the above changes or any other areas where you think breaking changes might be worth considering.
Beta Was this translation helpful? Give feedback.
All reactions