Skip to content

Commit 4e7600d

Browse files
committed
going back
1 parent 958d085 commit 4e7600d

File tree

1 file changed

+6
-12
lines changed

1 file changed

+6
-12
lines changed
+6-12
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,8 @@
1-
FROM oven/bun:1
2-
WORKDIR /usr/src/app
1+
# Container image that runs your code
2+
FROM alpine:3.10
33

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

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

0 commit comments

Comments
 (0)