diff --git a/.drone.yml b/.drone.yml index cea382f..657810f 100644 --- a/.drone.yml +++ b/.drone.yml @@ -30,3 +30,9 @@ volumes: - name: dockersock host: path: /var/run/docker.sock + +trigger: + branch: + - master + event: + - push diff --git a/Dockerfile b/Dockerfile index 4127b7b..81fb780 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,8 @@ -FROM node:lts-slim +FROM node:22.12.0-alpine3.19 # install openssl -RUN apt-get update && \ - apt-get install -y --no-install-recommends openssl expect && \ - rm -rf /var/cache/apk/* +RUN apk update && \ + apk add --no-cache openssl expect # install bitwarden-cli RUN npm install -g @bitwarden/cli diff --git a/package.json b/package.json index 07e1273..d0fe39a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bw-export", - "version": "1.2.0", + "version": "1.2.1", "description": "bw-export is a simple bash script that exports a raw, encrypted JSON copy of your Bitwarden vault.", "main": "export.sh", "scripts": { @@ -15,4 +15,4 @@ }, "author": "Rick van Lieshout (http://rickvanlieshout.com/)", "license": "MIT" -} \ No newline at end of file +}