We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 958d085 commit 4e7600dCopy full SHA for 4e7600d
.github/actions/post-log-to-slack/Dockerfile
@@ -1,14 +1,8 @@
1
-FROM oven/bun:1
2
-WORKDIR /usr/src/app
+# Container image that runs your code
+FROM alpine:3.10
3
4
-COPY package.json /package.json
5
-COPY bun.lockb /bun.lockb
6
-RUN bun install --frozen-lockfile --production
+# Copies your code file from your action repository to the filesystem path `/` of the container
+COPY entrypoint.sh /entrypoint.sh
7
8
-COPY index.ts /index.ts
9
-
10
-# RUN ls -la
11
12
-# ENTRYPOINT [ "bun", "run", "index.ts" ]
13
14
-ENTRYPOINT [ "ls", "-la"]
+# Code file to execute when the docker container starts up (`entrypoint.sh`)
+ENTRYPOINT ["/entrypoint.sh"]
0 commit comments