This commit is contained in:
2024-10-18 02:27:08 +02:00
commit 977df83c36
140 changed files with 6523 additions and 0 deletions

11
dockerfile Normal file
View File

@@ -0,0 +1,11 @@
# Use an official NGINX image as the base for serving the Flutter web app
FROM nginx:alpine
# Copy the prebuilt Flutter web app from the host machine to the NGINX public directory
COPY build/web /usr/share/nginx/html
# Expose port 80 for serving the web app
EXPOSE 80
# Start NGINX server
CMD ["nginx", "-g", "daemon off;"]