Skip to content

Phrase CLI Docker Image with nodejs and useful tools

License

Notifications You must be signed in to change notification settings

COEXCZ/node-alpine-phrase

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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