Skip to content

Commit b4f1846

Browse files
committed
fix(docker): streamline package installation in Dockerfile by removing upgrade step
1 parent 907e9a5 commit b4f1846

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docker/Dockerfile.app

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ RUN useradd -m -s /bin/bash appuser
5858
RUN if [ -n "$APK_MIRROR_ARG" ]; then \
5959
sed -i "[email protected]@${APK_MIRROR_ARG}@g" /etc/apt/sources.list.d/debian.sources; \
6060
fi && \
61-
apt-get update && apt-get upgrade -y && \
61+
apt-get update && \
6262
apt-get install -y --no-install-recommends \
6363
build-essential postgresql-client default-mysql-client ca-certificates tzdata sed curl bash vim wget \
6464
python3 python3-pip python3-dev libffi-dev libssl-dev \

0 commit comments

Comments
 (0)