mirror of
https://github.com/BluemediaDev/muse.git
synced 2025-05-09 19:51:36 +02:00
Reduce container image size (#485)
Co-authored-by: Max Isom <hi@maxisom.me>
This commit is contained in:
parent
8041586c31
commit
1081b1bce7
2 changed files with 6 additions and 4 deletions
|
@ -1,9 +1,9 @@
|
|||
FROM node:16.13.0 AS base
|
||||
FROM node:16.13.2-alpine AS base
|
||||
|
||||
# Install ffmpeg
|
||||
RUN apt-get update && \
|
||||
apt-get install -y ffmpeg && \
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
RUN apk update && \
|
||||
apk add ffmpeg && \
|
||||
rm -rf /var/cache/apk/*
|
||||
|
||||
WORKDIR /usr/app
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue