Returns the time

This commit is contained in:
srueda99
2022-04-18 13:34:19 -05:00
parent b29b4d4bf6
commit dfd2bccf3c
5 changed files with 15 additions and 11 deletions

View File

@@ -1,8 +1,8 @@
# Runs on Alpine container, latest version.
FROM alpine
# Copy the script to the home directory of the container.
COPY entrypoint.sh /home/entrypoint.sh
COPY entrypoint.sh /entrypoint.sh
# Grant executable permission on the script.
RUN ["chmod", "+x", "/home/entrypoint.sh"]
RUN ["chmod", "+x", "/entrypoint.sh"]
# Runs the script.
ENTRYPOINT [ "/home/entrypoint.sh" ]
ENTRYPOINT [ "/entrypoint.sh" ]