mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2025-06-27 11:20:40 -04:00
13 lines
No EOL
343 B
Docker
13 lines
No EOL
343 B
Docker
# Use an official Nginx image as the base image
|
|
FROM nginx:latest
|
|
|
|
# Set the working directory to /app
|
|
WORKDIR /app
|
|
|
|
# Copy the HTML, CSS, and JavaScript files to the Nginx default directory
|
|
COPY . /usr/share/nginx/html
|
|
|
|
# Expose port 80 to allow external access
|
|
EXPOSE 80
|
|
|
|
# The Nginx server will start automatically when the container starts |