first commit
This commit is contained in:
12
client/Dockerfile
Normal file
12
client/Dockerfile
Normal file
@@ -0,0 +1,12 @@
|
||||
# Use an official nginx image
|
||||
FROM nginx:alpine
|
||||
|
||||
# Copy the static content into the Nginx server
|
||||
COPY . /usr/share/nginx/html
|
||||
|
||||
# Expose port 80
|
||||
EXPOSE 80
|
||||
|
||||
# Start Nginx and keep it running
|
||||
CMD ["nginx", "-g", "daemon off;"]
|
||||
|
Reference in New Issue
Block a user