Added installation of g++ to Dockerfile

This commit is contained in:
StNicolay 2022-11-01 09:26:13 +00:00
parent ae2b214904
commit 4ee7f0a609

View File

@ -13,7 +13,7 @@ RUN adduser -u 1000 --disabled-password --gecos "" appuser && chown -R appuser /
# Install deps
RUN apt update && apt full-upgrade -y
RUN apt install curl gcc -y
RUN apt install curl gcc g++ -y
RUN curl -sS https://downloads.mariadb.com/MariaDB/mariadb_repo_setup | bash
RUN apt install libmariadb3 libmariadb-dev -y