Make `/config` directory writable by all (#616)
The `/config` directory needs to be writable by all in order to run the container as a non-root user.main
parent
fc50359752
commit
09a0039a38
|
@ -18,7 +18,7 @@ RUN apk add --update --no-cache tor curl bash openrc
|
|||
# libcurl4-openssl-dev
|
||||
|
||||
ARG config_dir=/config
|
||||
RUN mkdir -p $config_dir
|
||||
RUN mkdir -p -m 777 $config_dir
|
||||
VOLUME $config_dir
|
||||
|
||||
ARG username=''
|
||||
|
|
Loading…
Reference in New Issue