Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/itprokyle/bitbucket-pipeline-image
- Owner: ITProKyle
- License: apache-2.0
- Created: 2020-01-19T18:28:04.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-12-28T16:46:18.000Z (about 4 years ago)
- Last Synced: 2023-03-06T01:58:09.567Z (almost 2 years ago)
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/itprokyle/bitbucket-pipeline-image
- Size: 22.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```