9 lines
186 B
Docker
9 lines
186 B
Docker
# Use Nginx as the base image
|
|
FROM nginx:alpine
|
|
|
|
# Copy the frontend files into the Nginx default directory
|
|
COPY ./ /usr/share/nginx/html
|
|
|
|
# Expose the default Nginx port (80)
|
|
EXPOSE 80
|