@candlerip/shared-devops 0.0.6 → 0.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
- #!/usr/bin/bash
1
+ #!/bin/bash
2
2
 
3
3
  echo "$DOCKER_ACCESS_TOKEN" | docker login -u $DOCKER_USERNAME --password-stdin
4
4
  docker build -t reveszimre/$1 --build-arg NODE_ENV=production .
@@ -1,4 +1,4 @@
1
- #!/usr/bin/bash
1
+ #!/bin/bash
2
2
  set -e
3
3
 
4
4
  PARAMS=$(aws ssm get-parameters --names ${1//,/ } --output text --query "Parameters[*].{Name:Name,Value:Value}" --with-decryption | sed -E 's/\s+/=/g')
@@ -2,4 +2,4 @@ FROM docker:20.10.16
2
2
  WORKDIR /usr/src/app
3
3
 
4
4
  RUN apk update
5
- RUN apk add git npm
5
+ RUN apk add bash git npm
@@ -1,4 +1,4 @@
1
- #!/usr/bin/bash
1
+ #!/bin/bash
2
2
 
3
3
  CONTAINER_NAME=reveszimre/gitlab-$1
4
4
 
@@ -1,4 +1,4 @@
1
- #!/usr/bin/bash
1
+ #!/bin/bash
2
2
  set -e
3
3
 
4
4
  mkdir -p temp/dist
@@ -1,4 +1,4 @@
1
- #!/usr/bin/bash
1
+ #!/bin/bash
2
2
 
3
3
  PACKAGES=( @candlerip/shared4 @candlerip/shared-devops )
4
4
  for PACKAGE in "${PACKAGES[@]}"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@candlerip/shared-devops",
3
- "version": "0.0.6",
3
+ "version": "0.0.7",
4
4
  "bin": {
5
5
  "crsd-create-env-file": "./_devops/environment/create-env-file.sh",
6
6
  "crsd-build-publish-to-docker": "./_devops/docker/build-publish-to-docker.sh",