Added Dockerfile

This commit is contained in:
Tal Ziv 2022-10-04 10:10:43 +03:00 committed by GitHub
parent 68f4c41c68
commit d6dc063858
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

9
Dockerfile Normal file
View file

@ -0,0 +1,9 @@
FROM trafex/php-nginx
USER root
RUN apk add git
WORKDIR /app
RUN git clone https://github.com/ajgon/bgtoolset.git &&\
rm /var/www/html/* &&\
mv bgtoolset/* /var/www/html
EXPOSE 8080
USER nobody