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.
pull/623/head
ras07 2 years ago committed by GitHub
parent fc50359752
commit 09a0039a38
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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…
Cancel
Save