Skip to content

Commit

Permalink
Set exec permissions on seek image entrypoint (#152)
Browse files Browse the repository at this point in the history
  • Loading branch information
ilveroluca authored Sep 30, 2021
1 parent 2596a15 commit 0e9b324
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/config/registries/seek/seek.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@ COPY entrypoint.sh /usr/local/bin
RUN cd /tmp && tar xzvf data.tar.gz \
&& chown -R www-data:www-data data \
&& mv data /seek/ \
&& rm -rf data.tar.gz
&& rm -rf data.tar.gz \
&& chmod 755 /usr/local/bin/entrypoint.sh

ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]

USER www-data
USER www-data

0 comments on commit 0e9b324

Please sign in to comment.