mirror of
https://github.com/BluemediaGER/muse.git
synced 2024-11-10 03:55:29 +01:00
Revert "Reduce container image size (#485)"
This reverts commit 1081b1bce7
.
This commit is contained in:
parent
a750828b2c
commit
c89bd278d3
|
@ -5,8 +5,6 @@ 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
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
FROM node:16.13.2-alpine AS base
|
FROM node:16.13.0 AS base
|
||||||
|
|
||||||
# Install ffmpeg
|
# Install ffmpeg
|
||||||
RUN apk update && \
|
RUN apt-get update && \
|
||||||
apk add ffmpeg && \
|
apt-get install -y ffmpeg && \
|
||||||
rm -rf /var/cache/apk/*
|
rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
WORKDIR /usr/app
|
WORKDIR /usr/app
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue