Skip to content

Latest commit

 

History

History
52 lines (35 loc) · 1.15 KB

README.md

File metadata and controls

52 lines (35 loc) · 1.15 KB

Phrase CLI Docker Image

Lightweight Docker image based on node:14-alpine with basic useful tools and Phrase CLI

Docker hub

Can be pulled from Docker Hub: coexcz/node-alpine-phrase

docker pull coexcz/node-alpine-phrase

Examples

Bitbucket Pipelines CI

  • Create bitbucket-pipelines.yml
image: coexcz/node-alpine-phrase

pipelines:
  branches:
    master:
      - step:
          script:
            - phrase --help

More examples on Phrase CLI readme

Development

Release

Automatically

yarn release:patch
# yarn release:minor
# yarn release:major

New version will be released, tagged and pushed into Docker hub with current tag + latest tag

Manually

docker build --no-cache --progress plain --pull -t node-alpine-phrase:v2.x.x .
docker tag node-alpine-phrase:v2.x.x coexcz/node-alpine-phrase:v2.x.x
docker push coexcz/node-alpine-phrase:v2.x.x