部署文件
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 1m41s

This commit is contained in:
Song367 2026-03-09 14:53:59 +08:00
parent 80640d8690
commit 85aba6647b
2 changed files with 58 additions and 0 deletions

22
Dockerfile Normal file
View File

@ -0,0 +1,22 @@
FROM node:22.14.0-alpine3.21 as build-stage
COPY ./ /app
WORKDIR /app
ENV YARN_REGISTRY https://registry.npmmirror.com/
RUN yarn install
COPY . .
ARG DEPLOY_ENV=prod
RUN if [ "$DEPLOY_ENV" = "test" ]; then \
yarn build ; \
else \
yarn build ; \
fi
# production stage
FROM nginx:1.27.4-alpine3.21 as production-stage
RUN mkdir /app
COPY --from=build-stage /app/dist /app
COPY nginx.conf /etc/nginx/nginx.conf
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]

36
nginx.conf Normal file
View File

@ -0,0 +1,36 @@
user nginx;
worker_processes 1;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
sendfile on;
keepalive_timeout 65;
server {
listen 80;
server_name localhost;
location = /creation-flow-app {
return 301 https://$host/creation-flow-app/login;
}
location = /creation-flow-app/ {
return 301 https://$host/creation-flow-app/login;
}
location / {
root /app;
index index.html;
try_files $uri $uri/ /index.html;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}
}