Revert "Reduce container image size (#485)"

This reverts commit 1081b1bce7.
This commit is contained in:
Max Isom 2022-01-25 20:16:29 -05:00
parent a750828b2c
commit c89bd278d3
No known key found for this signature in database
GPG key ID: 25C9B1A7F6798880
2 changed files with 4 additions and 6 deletions

View file

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