# We’ll use php:7.3-apache image. It does not have an ssh server installed, so we need to add it. We create Dockerfile:
FROM php:7.3-apache
RUN apt-get -y update && \
    apt-get -y — no-install-recommends install — fix-missing openssh-server && \
    rm -rf /var/lib/apt/lists/*