fix caching problem devcontainer

This commit is contained in:
Art4 2026-02-14 09:42:01 +01:00
commit 024eb04c1a

View file

@ -2,10 +2,10 @@ FROM php:8.4-apache
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update -y;
# Install MariaDB client
RUN apt-get install -y mariadb-client
RUN apt-get update \
&& apt-get install -y --no-install-recommends mariadb-client \
;
# Base packages
RUN apt-get install -y \