14 lines
291 B
Docker
14 lines
291 B
Docker
# Use nginx to serve the static files
|
|
FROM nginx:alpine
|
|
|
|
# Copy the web files to nginx html directory
|
|
COPY . /usr/share/nginx/html/
|
|
|
|
# Copy custom nginx configuration
|
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
|
|
|
# Expose port 80
|
|
EXPOSE 80
|
|
|
|
# Start nginx
|
|
CMD ["nginx", "-g", "daemon off;"] |