Updated the SilverLabs logo to use a transparent background for better visual appearance against the gradient background. Removed the old logo.jpg file and updated the Dockerfile to reflect this change. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
20 lines
456 B
Docker
20 lines
456 B
Docker
FROM nginx:alpine
|
|
|
|
# Copy website files to nginx html directory
|
|
COPY index.html /usr/share/nginx/html/
|
|
COPY styles.css /usr/share/nginx/html/
|
|
COPY script.js /usr/share/nginx/html/
|
|
COPY logo.png /usr/share/nginx/html/
|
|
|
|
# Copy SDK directory with templates
|
|
COPY sdk/ /usr/share/nginx/html/sdk/
|
|
|
|
# Copy custom nginx configuration
|
|
COPY nginx-site.conf /etc/nginx/conf.d/default.conf
|
|
|
|
# Expose port 80
|
|
EXPOSE 80
|
|
|
|
# Start nginx
|
|
CMD ["nginx", "-g", "daemon off;"]
|