Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a docker image #10

Open
OlehBandrivskyi opened this issue Nov 3, 2022 · 2 comments
Open

Add a docker image #10

OlehBandrivskyi opened this issue Nov 3, 2022 · 2 comments
Assignees
Labels
duplicate This issue or pull request already exists enhancement New feature or request

Comments

@OlehBandrivskyi
Copy link

Hello,

I want to add Rustle to my CI pipelines. And it would be great to have an official and up-to-date docker image.

Example of image integration to repository packages

.github/workflows/image.yml

name: Publish a docker image

on:
  push:
    branches:
      - master
    tags:
      - 'v*'
  release:
    types: [published]

jobs:
  publish:
    runs-on: ubuntu-latest
    permissions:
      contents: read
      packages: write

    steps:
      - uses: actions/checkout@v3

      - uses: docker/login-action@v1
        with:
          registry: ghcr.io
          username: ${{ github.actor }}
          password: ${{ secrets.GITHUB_TOKEN }}

      - uses: docker/metadata-action@v3
        id: meta_rustle
        with:
          images: ghcr.io/blocksecteam/rustle

      - uses: docker/build-push-action@v2
        with:
          push: true
          tags: ${{ steps.meta_rustle.outputs.tags }}
          labels: ${{ steps.meta_rustle.outputs.labels }}
@valour01
Copy link
Contributor

valour01 commented Nov 4, 2022

Good suggestion. Will consider to add the support after the community test.

@valour01 valour01 added the enhancement New feature or request label Nov 4, 2022
@futuretech6 futuretech6 added the duplicate This issue or pull request already exists label Nov 4, 2022
@futuretech6
Copy link
Contributor

Sounds similar to #2, we will release a github action plugin, but building an official docker image is not so urgent.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
duplicate This issue or pull request already exists enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

3 participants