The server component to the Lockbox app.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- FROM php:7.4-apache
-
- # Set working directy at web server root
- WORKDIR /var/www/html
-
- # Manually installs Lockbox
- COPY ./lockbox/ .
- COPY ./config/env.example.php ./php/env.php
- COPY ./config/key.public .
-
- # Create directory to save submissions and adjust permissions
- RUN mkdir /var/www/data
- RUN chown -R www-data:www-data /var/www/data
|