Dockerfile: chmod 755 the entrypoint, so we don't depend on the permissions of the build system, fixes #27
This commit is contained in:
parent
6d139045cf
commit
c095ddd323
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ RUN dpkg -i /tmp/prosody.deb \
|
|||
&& perl -i -pe 'BEGIN{undef $/;} s/^log = {.*?^}$/log = {\n {levels = {min = "info"}, to = "console"};\n}/smg' /etc/prosody/prosody.cfg.lua
|
||||
|
||||
COPY ./entrypoint.sh /entrypoint.sh
|
||||
RUN chmod +x /entrypoint.sh
|
||||
RUN chmod 755 /entrypoint.sh
|
||||
ENTRYPOINT ["/entrypoint.sh"]
|
||||
|
||||
EXPOSE 80 443 5222 5269 5347 5280 5281
|
||||
|
|
Loading…
Reference in a new issue