mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-01-30 14:22:02 +00:00
- Replaced the application icon in package.json with a larger version for better visibility. - Added a new logo image file `logo_larger.png` to the public directory. - Introduced a Dockerfile for the marketing section to serve static files using Nginx. - Created a new `index.html` file for the marketing site, featuring a responsive layout and sections for features and technology stack.
11 lines
187 B
Docker
11 lines
187 B
Docker
FROM nginx:alpine
|
|
|
|
# Copy the public directory to nginx's html directory
|
|
COPY public/ /usr/share/nginx/html/
|
|
|
|
# Expose port 80
|
|
EXPOSE 80
|
|
|
|
# Start nginx
|
|
CMD ["nginx", "-g", "daemon off;"]
|