2 Commits

Author SHA1 Message Date
93a90a5ba0 Update Dockerfile 2023-07-11 23:44:53 +00:00
ab4d0614c7 Add directory information to entrypoint for testing 2023-07-11 23:40:40 +00:00
2 changed files with 9 additions and 1 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

@@ -9,5 +9,9 @@ set -e
# Change permissions # Change permissions
chmod -R a+w ./ chmod -R a+w ./
pwd
ls -R
# Run command # Run command
$* jekyll build