client/server + docker

This commit is contained in:
2024-03-03 19:59:35 -05:00
parent 7c0afd0114
commit 91d55efd20
12 changed files with 103 additions and 0 deletions

9
client/Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
# Use an official nginx image
FROM nginx:alpine
# Expose port 80
EXPOSE 80
# Start Nginx and keep it running
CMD ["nginx", "-g", "daemon off;"]