diff --git a/Dockerfile-arm b/Dockerfile-arm new file mode 100644 index 0000000..7e30def --- /dev/null +++ b/Dockerfile-arm @@ -0,0 +1,18 @@ +# +# the documentation of VIA +# +FROM php:8.1.3-apache +LABEL maintainer="kontakt@stadtlandnetz.de" + +USER root + +RUN apt-get update -y +RUN apt-get upgrade -y + +WORKDIR /var/www/html +ADD . / /var/www/html/ +RUN chown -R www-data:www-data /var/www + +# Expose ports +# important for the port-tunneling in the OTC configuration +EXPOSE 90