diff --git a/.github/workflows/docker-build.yaml b/.github/workflows/docker-build.yaml index e32b5d2..fb056b7 100644 --- a/.github/workflows/docker-build.yaml +++ b/.github/workflows/docker-build.yaml @@ -38,6 +38,11 @@ jobs: arch: [ linux/amd64, linux/arm64, linux/arm/v7 ] tags: webguruseu/bitbucket-pipelines-phpdockerio:php82-node + - name: php82-bun + file: php82-bun.Dockerfile + arch: [ linux/amd64, linux/arm64, linux/arm/v7 ] + tags: webguruseu/bitbucket-pipelines-phpdockerio:php82-bun + steps: - name: Checkout uses: actions/checkout@v3 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..62c8935 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.idea/ \ No newline at end of file diff --git a/php82-bun.Dockerfile b/php82-bun.Dockerfile new file mode 100644 index 0000000..cbf60ab --- /dev/null +++ b/php82-bun.Dockerfile @@ -0,0 +1,4 @@ +FROM webguruseu/bitbucket-pipelines-phpdockerio:php82 + +RUN curl -fsSL https://bun.sh/install | bash; \ + source /root/.bashrc;