diff --git a/CHANGELOG.md b/CHANGELOG.md index 90aa46f..965f3a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.4.1] - 2024-02-27 + +### Changed + +- Use the alpine `bun` image to half the image size. + ## [1.4.0] - 2024-02-27 ### Changed diff --git a/Dockerfile b/Dockerfile index 2f26938..9ab1868 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM oven/bun:1 as base +FROM oven/bun:1-alpine as base WORKDIR /app COPY package.json bun.lockb /app/ diff --git a/package.json b/package.json index 5c0a275..0be819e 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "version": "1.4.0", + "version": "1.4.1", "license": "MIT", "type": "module", "main": "./src/index.ts",