Skip to content

Commit

Permalink
dockerfile update for arm
Browse files Browse the repository at this point in the history
  • Loading branch information
VanDerLars committed Feb 22, 2022
1 parent 2b99e6a commit a475a1d
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions Dockerfile-arm
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#
# the documentation of VIA
#
FROM php:8.1.3-apache
LABEL maintainer="[email protected]"

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

0 comments on commit a475a1d

Please sign in to comment.