9 lines
165 B
Docker
9 lines
165 B
Docker
FROM caddy:latest
|
|
|
|
# Copy Caddy configuration
|
|
COPY Caddyfile /etc/caddy/Caddyfile
|
|
|
|
# Copy static files
|
|
COPY index.html /srv/index.html
|
|
COPY style.css /srv/style.css
|