4 Commits

2 changed files with 9 additions and 4 deletions

View File

@@ -10,5 +10,9 @@ EXPOSE 4000/tcp
# Entry point # Entry point
COPY entrypoint.sh /entrypoint.sh COPY entrypoint.sh /entrypoint.sh
COPY ./ /
RUN chmod +x /entrypoint.sh RUN chmod +x /entrypoint.sh
RUN chmod +w /
ENTRYPOINT ["/entrypoint.sh"] ENTRYPOINT ["/entrypoint.sh"]

View File

@@ -7,10 +7,11 @@ set -x
set -e set -e
# Change permissions # Change permissions
chmod -R a+w /github/workspace chmod -R a+w ./
# Use working directory pwd
cd /github/workspace
ls -R
# Run command # Run command
$* jekyll build