add gcc to required packages for web container

This commit is contained in:
Delan Azabani 2024-01-11 12:21:16 +08:00
parent d9608a912d
commit 265440094b
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ ARG OS_VERSION=bullseye
FROM "debian:${OS_VERSION}-slim"
RUN apt-get update \
&& apt-get install -y --no-install-recommends sudo systemd rsyslog procps man-db wget git \
&& apt-get install -y --no-install-recommends sudo systemd rsyslog procps man-db wget git gcc \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*