Fixed root permissions
The Docker has been changed to no longer run these commands as root, added root permissions for the relevant commands to fix the docker.
This commit is contained in:
parent
4af0d9dabd
commit
d5a26e8c20
|
@ -4,5 +4,6 @@
|
|||
FROM mambaorg/micromamba
|
||||
WORKDIR /content/
|
||||
COPY env.yml /home/micromamba/env.yml
|
||||
RUN apt update && apt install xorg -y
|
||||
RUN micromamba install -y -n base -f /home/micromamba/env.yml
|
||||
USER root
|
||||
RUN apt update && apt install xorg -y
|
||||
|
|
Loading…
Reference in New Issue