pica+apache composition

This commit is contained in:
Blue 2023-12-02 18:29:09 -03:00
parent 6d7a3b7b67
commit 346f7af912
Signed by: blue
GPG key ID: 9B203B252A63EE38
3 changed files with 32 additions and 0 deletions

10
pica-apache/Dockerfile Normal file
View file

@ -0,0 +1,10 @@
# syntax=docker/dockerfile:1
FROM alpine:latest
RUN \
apk add --no-cache \
apache2 \
apache2-proxy
COPY vhost-pica.conf /etc/apache2/conf.d/
EXPOSE 80
CMD httpd -D FOREGROUND