inital Jack
This commit is contained in:
+11
@@ -0,0 +1,11 @@
|
||||
# Use a lightweight Nginx image
|
||||
FROM nginx:alpine
|
||||
|
||||
# Copy the static files to the Nginx html directory
|
||||
COPY . /usr/share/nginx/html/
|
||||
|
||||
# Expose port 80
|
||||
EXPOSE 80
|
||||
|
||||
# Start Nginx
|
||||
CMD ["nginx", "-g", "daemon off;"]
|
||||
Reference in New Issue
Block a user