mirror of
https://github.com/fernwerker/ownDynDNS.git
synced 2025-07-10 22:25:13 +02:00
7 lines
228 B
Docker
7 lines
228 B
Docker
FROM nginx:alpine
|
|
RUN mkdir -p /var/www/html/src
|
|
COPY ./nginx/default.conf /etc/nginx/conf.d/
|
|
COPY ./data/src/ /var/www/html/src
|
|
COPY ./data/update.php /var/www/html
|
|
COPY ./data/.env.dist /var/www/html/.env
|
|
VOLUME /var/www/html
|