Adding Dockerfile with addtional apt-get for rsvg support
This commit is contained in:
parent
dba56f7870
commit
33b5d45c29
1 changed files with 11 additions and 0 deletions
11
Dockerfile
Normal file
11
Dockerfile
Normal file
|
@ -0,0 +1,11 @@
|
|||
FROM webdevops/php-apache:7.4
|
||||
|
||||
# want rsvg support too
|
||||
RUN apt-get update
|
||||
RUN apt-get install -y librsvg
|
||||
|
||||
#restart apache
|
||||
RUN service apache2 restart
|
||||
|
||||
# export ports
|
||||
EXPOSE 80 443
|
Loading…
Reference in a new issue