17 lines
297 B
Docker
17 lines
297 B
Docker
FROM caddy:2-alpine
|
|
|
|
# Copy Caddyfile and static content
|
|
COPY Caddyfile /etc/caddy/Caddyfile
|
|
COPY index.html /srv/
|
|
COPY theme.js /srv/
|
|
COPY styles.css /srv/
|
|
|
|
# Expose port 8080
|
|
EXPOSE 8080
|
|
|
|
# Set working directory
|
|
WORKDIR /srv
|
|
|
|
# Run Caddy
|
|
CMD ["caddy", "run", "--config", "/etc/caddy/Caddyfile"]
|