scp-action/Dockerfile
2022-04-18 14:15:30 -05:00

8 lines
235 B
Docker

# Runs on Alpine container, latest version.
FROM alpine
# Copy the content to the container.
COPY . /
# Grant executable permission on the script.
RUN ["chmod", "+x", "/entrypoint.sh"]
# Runs the script.
ENTRYPOINT [ "/entrypoint.sh" ]