Skip to content

Commit

Permalink
Merge pull request #76 from abap34/auto-release
Browse files Browse the repository at this point in the history
ビルド時に bashを明示的に使うように
  • Loading branch information
abap34 authored Apr 2, 2024
2 parents 40288d9 + bbd41a9 commit ed8e16b
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 ed8e16b

Please sign in to comment.