add immoweb ui
This commit is contained in:
parent
7e8c79d3d1
commit
151da16c27
266 changed files with 264879 additions and 0 deletions
17
immoweb/Dockerfile
Normal file
17
immoweb/Dockerfile
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
# Use the official lightweight Nginx image
|
||||
FROM nginx:alpine
|
||||
|
||||
# Set working directory to Nginx asset directory
|
||||
WORKDIR /usr/share/nginx/html
|
||||
|
||||
# Remove default Nginx static files
|
||||
RUN rm -rf ./*
|
||||
|
||||
# Copy static files from host to container
|
||||
COPY ./ .
|
||||
|
||||
# Expose port 80 (HTTP)
|
||||
EXPOSE 80
|
||||
|
||||
# Start Nginx in foreground (Alpine uses `sh` syntax)
|
||||
CMD ["nginx", "-g", "daemon off;"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue