Skip to content

Commit

Permalink
ビルド時に bashを明示的に使うように
Browse files Browse the repository at this point in the history
  • Loading branch information
abap34 committed Apr 2, 2024
1 parent e58e142 commit bbd41a9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
uses: actions/checkout@v2

- name: Build
run: sh build.sh
run: bash build.sh

- name: Upload Release
uses: actions/upload-release-asset@v1
Expand Down
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@ FROM alpine:latest

RUN apk add --no-cache g++

RUN apk add --no-cache bash

WORKDIR /app

COPY . .

RUN sh build.sh
RUN bash build.sh

ENTRYPOINT [ "./docker-entrypoint.sh" ]

0 comments on commit bbd41a9

Please sign in to comment.