This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
FROM ghcr.io/cirruslabs/flutter:stable
|
||||
WORKDIR /workspace/app
|
||||
CMD ["flutter", "--version"]
|
||||
@@ -0,0 +1,2 @@
|
||||
FROM nginx:1.27-alpine
|
||||
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
||||
@@ -0,0 +1,11 @@
|
||||
server {
|
||||
listen 8080;
|
||||
server_name _;
|
||||
|
||||
root /usr/share/nginx/html;
|
||||
index index.html;
|
||||
|
||||
location / {
|
||||
try_files $uri $uri/ /index.html;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user