Skip to content

Commit

Permalink
Remove bash in favor of sh
Browse files Browse the repository at this point in the history
  • Loading branch information
xprnio committed Jan 13, 2024
1 parent d078bcb commit 18742db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions functions/hello-bash/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM alpine
WORKDIR /app

RUN apk add bash jq
RUN apk add jq
ADD entrypoint.sh /app

ENTRYPOINT ["bash", "/app/entrypoint.sh"]
ENTRYPOINT ["sh", "/app/entrypoint.sh"]

0 comments on commit 18742db

Please sign in to comment.