dockerfiles: ensuring bash scripts are executable

pull/32/head
Rusty Bower 1 year ago
parent d36af5d6ea
commit 534126931c
No known key found for this signature in database
GPG Key ID: 16A7D7E87AF35B27

@ -62,6 +62,9 @@ WORKDIR /config
# copy local files
COPY root/ /
# ensure scripts are executable
RUN chmod +x /scripts/*.bash
# ports and volumes
EXPOSE 8989
VOLUME /config

@ -70,6 +70,9 @@ WORKDIR /config
# copy local files
COPY root/ /
# ensure scripts are executable
RUN chmod +x /scripts/*.bash
# ports and volumes
EXPOSE 8989
VOLUME /config

Loading…
Cancel
Save