Build commit
This commit is contained in:
8
Dockerfile
Normal file
8
Dockerfile
Normal file
@@ -0,0 +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
|
||||
# Grant executable permission on the script.
|
||||
RUN ["chmod", "+x", "/home/entrypoint.sh"]
|
||||
# Runs the script.
|
||||
ENTRYPOINT [ "/entrypoint.sh" ]
|
||||
Reference in New Issue
Block a user