We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de43afc commit c728f44Copy full SHA for c728f44
Dockerfile
@@ -1,8 +1,13 @@
1
-# Container image that runs your code
2
-FROM alpine:3.10
+# Base image
+FROM alpine:latest
3
+
4
+RUN apk add --no-cache \
5
+ bash \
6
+ ca-certificates \
7
+ curl \
8
-# Copies your code file from your action repository to the filesystem path `/` of the container
9
COPY entrypoint.sh /entrypoint.sh
10
-# Code file to execute when the docker container starts up (`entrypoint.sh`)
-ENTRYPOINT ["/entrypoint.sh"]
11
+RUN chmod +x /entrypoint.sh
12
13
+ENTRYPOINT ["/entrypoint.sh"]
0 commit comments