We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fffe6e commit 6e080d4Copy full SHA for 6e080d4
.devcontainer/docker/app/Dockerfile
@@ -1,5 +1,9 @@
1
FROM thecodingmachine/php:8.4-v4-apache-node22
2
ENV PHP_EXTENSIONS="mysqli gd pdo_mysql intl imagick imap ldap xdebug msgpack pcov bcmath"
3
4
+USER root
5
+RUN apt-get update && apt-get install -y mariadb-client && rm -rf /var/lib/apt/lists/*
6
+USER docker
7
+
8
WORKDIR /simpede
9
.devcontainer/setup.sh
@@ -1,5 +1,4 @@
#!/bin/bash
-sudo apt update -y && sudo apt upgrade -y && sudo apt install -y mariadb-client
echo --- Copy the environment file ...
cp .env.example .env
0 commit comments