mirror of
https://github.com/openvk/openvk
synced 2024-11-11 09:29:29 +03:00
57 lines
1.6 KiB
Docker
57 lines
1.6 KiB
Docker
|
ARG GITREPO=openvk/openvk
|
||
|
FROM ghcr.io/${GITREPO}/php:8.1-cli as builder
|
||
|
|
||
|
WORKDIR /opt
|
||
|
|
||
|
RUN git clone --depth=2 https://github.com/openvk/chandler.git
|
||
|
|
||
|
WORKDIR /opt/chandler
|
||
|
|
||
|
RUN composer install
|
||
|
|
||
|
WORKDIR /opt/chandler/extensions/available
|
||
|
|
||
|
RUN git clone --depth=2 https://github.com/openvk/commitcaptcha.git
|
||
|
|
||
|
WORKDIR /opt/chandler/extensions/available/commitcaptcha
|
||
|
|
||
|
RUN composer install
|
||
|
|
||
|
WORKDIR /opt/chandler/extensions/available
|
||
|
|
||
|
RUN mkdir openvk
|
||
|
|
||
|
WORKDIR /opt/chandler/extensions/available/openvk
|
||
|
|
||
|
ADD . .
|
||
|
|
||
|
RUN composer install
|
||
|
|
||
|
FROM docker.io/node:14 as nodejs
|
||
|
|
||
|
COPY --from=builder /opt/chandler /opt/chandler
|
||
|
|
||
|
WORKDIR /opt/chandler/extensions/available/openvk/Web/static/js
|
||
|
|
||
|
RUN yarn install
|
||
|
|
||
|
WORKDIR /opt/chandler/extensions/available/openvk
|
||
|
|
||
|
ARG GITREPO=openvk/openvk
|
||
|
FROM ghcr.io/${GITREPO}/php:8.1-apache
|
||
|
|
||
|
COPY --from=nodejs --chown=www-data:www-data /opt/chandler /opt/chandler
|
||
|
|
||
|
RUN ln -s /opt/chandler/extensions/available/commitcaptcha/ /opt/chandler/extensions/enabled/commitcaptcha && \
|
||
|
ln -s /opt/chandler/extensions/available/openvk/ /opt/chandler/extensions/enabled/openvk && \
|
||
|
rm -f /etc/apache2/sites-enabled/000-default.conf && \
|
||
|
ln -s /opt/chandler/extensions/available/openvk/install/automated/common/10-openvk.conf /etc/apache2/sites-enabled/10-openvk.conf && \
|
||
|
a2enmod rewrite
|
||
|
|
||
|
VOLUME [ "/var/log/openvk" ]
|
||
|
VOLUME [ "/opt/chandler/extensions/available/openvk/storage" ]
|
||
|
VOLUME [ "/opt/chandler/extensions/available/openvk/tmp/api-storage/audios" ]
|
||
|
VOLUME [ "/opt/chandler/extensions/available/openvk/tmp/api-storage/photos" ]
|
||
|
VOLUME [ "/opt/chandler/extensions/available/openvk/tmp/api-storage/videos" ]
|
||
|
|
||
|
USER www-data
|