Merge branch 'master' of github.com:codetheweb/muse

This commit is contained in:
Max Isom 2022-01-25 20:15:32 -05:00
commit a750828b2c
No known key found for this signature in database
GPG key ID: 25C9B1A7F6798880
2 changed files with 6 additions and 4 deletions

View file

@ -5,6 +5,8 @@ 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). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased] ## [Unreleased]
### Fixed
- Switched back to an Alpine container base image to reduce size
## [0.5.0] - 2022-01-21 ## [0.5.0] - 2022-01-21
### Changed ### Changed

View file

@ -1,9 +1,9 @@
FROM node:16.13.0 AS base FROM node:16.13.2-alpine AS base
# Install ffmpeg # Install ffmpeg
RUN apt-get update && \ RUN apk update && \
apt-get install -y ffmpeg && \ apk add ffmpeg && \
rm -rf /var/lib/apt/lists/* rm -rf /var/cache/apk/*
WORKDIR /usr/app WORKDIR /usr/app