Initial commit of the Asset Management System, including project structure, Docker configuration, database migrations, and core application files. Added user authentication, asset management features, and basic UI components.
This commit is contained in:
14
Dockerfile.nginx
Normal file
14
Dockerfile.nginx
Normal file
@@ -0,0 +1,14 @@
|
||||
FROM nginx:stable-alpine
|
||||
|
||||
# Copy nginx configuration
|
||||
COPY nginx.conf /etc/nginx/nginx.conf
|
||||
|
||||
# Copy static assets
|
||||
COPY public/assets /var/www/html/public/assets
|
||||
|
||||
# Create necessary directories
|
||||
RUN mkdir -p /var/www/html/public
|
||||
|
||||
EXPOSE 80
|
||||
|
||||
CMD ["nginx", "-g", "daemon off;"]
|
||||
Reference in New Issue
Block a user