16 lines
353 B
Docker
16 lines
353 B
Docker
FROM nginx:1.25-alpine
|
|
|
|
# Remove default Nginx configuration
|
|
RUN rm /etc/nginx/conf.d/default.conf
|
|
|
|
# Copy custom Nginx security & performance config
|
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
|
|
|
# Copy static website files into Nginx server root
|
|
COPY . /usr/share/nginx/html
|
|
|
|
# Expose standard HTTP port
|
|
EXPOSE 80
|
|
|
|
CMD ["nginx", "-g", "daemon off;"]
|