scp-action/Dockerfile
Sebastian Rueda 6e2f024bdc Build commit
2022-04-17 23:18:15 -05:00

8 lines
291 B
Docker

# 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" ]