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