Skip to content
Snippets Groups Projects
Select Git revision
  • aa0ab94436ba18ecf4343b30b0008619dddb414a
  • main default protected
2 results

Dockerfile

Blame
  • Forked from TO / Forum
    4 commits behind the upstream repository.
    Andrej Ramašeuski's avatar
    aa0ab944
    History
    Dockerfile 291 B
    FROM bitnami/phpbb:3.3.8
    MAINTAINER Andrej Ramašeuski <andrej.ramaseuski@pirati.cz>
    
    USER 0
    RUN install_packages cron
    COPY crontab /etc/cron.d/
    COPY run.sh /opt/bitnami/scripts/apache/
    RUN chmod 777 /run
    USER 1001
    
    COPY phpbb /opt/bitnami/phpbb
    CMD [ "/opt/bitnami/scripts/apache/run.sh" ]