use alpine image

This commit is contained in:
Niccolo Borgioli 2024-02-27 18:05:18 +01:00
parent 3ca15c532f
commit e0af9cd82e
No known key found for this signature in database
GPG Key ID: 4897ACD13A65977C
3 changed files with 8 additions and 2 deletions

View File

@ -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

View File

@ -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/

View File

@ -1,5 +1,5 @@
{
"version": "1.4.0",
"version": "1.4.1",
"license": "MIT",
"type": "module",
"main": "./src/index.ts",