Skip to content

Commit 48c3366

Browse files
committed
now
1 parent fcf0946 commit 48c3366

File tree

1 file changed

+11
-7
lines changed

1 file changed

+11
-7
lines changed
+11-7
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
1-
# Container image that runs your code
2-
FROM alpine:3.10
1+
FROM oven/bun:1
32

4-
# Copies your code file from your action repository to the filesystem path `/` of the container
5-
COPY entrypoint.sh /entrypoint.sh
3+
COPY package.json /package.json
4+
COPY bun.lockb /bun.lockb
5+
RUN bun install --frozen-lockfile --production
66

7-
# Code file to execute when the docker container starts up (`entrypoint.sh`)
8-
# ENTRYPOINT ["/entrypoint.sh"]
9-
ENTRYPOINT ["ls", "-la"]
7+
COPY index.ts /index.ts
8+
9+
# RUN ls -la
10+
11+
ENTRYPOINT [ "bun", "run", "/index.ts" ]
12+
13+
# ENTRYPOINT [ "ls", "-la"]

0 commit comments

Comments
 (0)