Fix exec permissions on wrapper (unraid issue)

This commit is contained in:
Zedifus 2021-09-06 21:35:07 +01:00
parent 95aa228a92
commit b1993ddea2

View File

@ -18,7 +18,8 @@ RUN apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/testing open
COPY ./ /commander
WORKDIR /commander
RUN mv ./app/config ./app/config_original \
&& mv ./app/config_original/default.json.example ./app/config_original/default.json
&& mv ./app/config_original/default.json.example ./app/config_original/default.json \
&& chmod +x ./docker_launcher.sh
# Expose Web Interface port & Server port range
EXPOSE 8000