We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab1977c commit dcf24d9Copy full SHA for dcf24d9
Dockerfile
@@ -1,10 +1,10 @@
1
# Container image that runs your code
2
-FROM dawidd6/action-send-mail:v3.7.1
+FROM alpine:3.10
3
4
# Copies your code file from your action repository to the filesystem path `/` of the container
5
-#COPY entrypoint.sh /entrypoint.sh
6
-#
7
-#RUN chmod +x /entrypoint.sh
8
9
-## Code file to execute when the docker container starts up (`entrypoint.sh`)
10
-#ENTRYPOINT ["/entrypoint.sh"]
+COPY entrypoint.sh /entrypoint.sh
+
+RUN chmod +x /entrypoint.sh
+# Code file to execute when the docker container starts up (`entrypoint.sh`)
+ENTRYPOINT ["/entrypoint.sh"]
0 commit comments