mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-22 05:25:15 +01:00
[MIRROR] Adds -y to upgrade in the docker files to prevent breakage (#27712)
* Adds -y to upgrade in the docker files to prevent breakage (#83198) ## About The Pull Request Adds -y to upgrade in the docker files to prevent breakage ## Why It's Good For The Game Prevents:  ## Changelog 🆑 fix: Fixes error when running docker compose on apt upgrade /🆑 * Adds -y to upgrade in the docker files to prevent breakage --------- Co-authored-by: Dax Dupont <skyemenjou@gmail.com>
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
FROM debian:bullseye-slim
|
||||
|
||||
# install required packages
|
||||
RUN apt-get update && apt-get upgrade && apt-get install -y ffmpeg wget curl &&\
|
||||
RUN apt-get update && apt-get upgrade -y && apt-get install -y ffmpeg wget curl &&\
|
||||
apt-get clean && \
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
FROM debian:bullseye-slim
|
||||
|
||||
# install required packages
|
||||
RUN apt-get update && apt-get upgrade && apt-get install -y wget curl espeak-ng &&\
|
||||
RUN apt-get update && apt-get upgrade -y && apt-get install -y wget curl espeak-ng &&\
|
||||
apt-get clean && \
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
|
||||
|
||||
Reference in New Issue
Block a user