mirror of
https://github.com/docker/awesome-compose.git
synced 2025-04-19 07:18:06 +02:00
22 lines
420 B
Docker
22 lines
420 B
Docker
# syntax=docker/dockerfile:1.4
|
|
|
|
FROM --platform=$BUILDPLATFORM php:8.0.9-apache as builder
|
|
|
|
CMD ["apache2-foreground"]
|
|
|
|
FROM builder as dev-envs
|
|
|
|
RUN <<EOF
|
|
apt-get update
|
|
apt-get install -y --no-install-recommends git
|
|
EOF
|
|
|
|
RUN <<EOF
|
|
useradd -s /bin/bash -m vscode
|
|
groupadd docker
|
|
usermod -aG docker vscode
|
|
EOF
|
|
# install Docker tools (cli, buildx, compose)
|
|
COPY --from=gloursdocker/docker / /
|
|
|
|
CMD ["apache2-foreground"]
|