-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2b99e6a
commit a475a1d
Showing
1 changed file
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |