Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/itprokyle/bitbucket-pipeline-image

Dockerfiles for Bitbucket pipeline image
https://github.com/itprokyle/bitbucket-pipeline-image

Last synced: 3 months ago
JSON representation

Dockerfiles for Bitbucket pipeline image

Awesome Lists containing this project

README

        

# bitbucket-pipeline-image

Bitbucket pipeline image containing the components most used for testing and building projects.
The tags revolve around the primary language required but will include all listed languages.
If the tag is not specific to a language, the latest version of the language is used.

## Contains

- bash
- git
- make
- npm
- [pyright](https://www.npmjs.com/package/pyright/) (python static type checker)
- python
- [pipenv](https://pipenv.pypa.io/en/latest/)
- [poetry](https://python-poetry.org/)

## Development

Docker images are built automatically when merged into master so there is no need to manually publish new versions.

### Building The Image

```shell
$ docker image build --tag bitbucket-pipeline-image:tag .
```

### Publishing The Image

```shell
$ docker image push bitbucket-pipeline-image:tag
```

### Run The Image Locally

```shell
$ docker container run -it bitbucket-pipeline-image:tag /bin/bash
```