Compare commits

...

2 Commits

Author SHA1 Message Date
55dca5f75f Merge branch 'main' of https://git.hcmc.online/tienngo/timelapse-calc 2025-12-25 17:05:54 +07:00
015f1415a1 commit 2025-12-25 17:05:11 +07:00
3 changed files with 80 additions and 6 deletions

35
.dockerignore Normal file
View File

@@ -0,0 +1,35 @@
# Dependencies
node_modules
npm-debug.log*
# Build outputs
dist
dist-ssr
*.local
# Git
.git
.gitignore
# IDE
.vscode
.idea
*.swp
*.swo
.DS_Store
# Testing
coverage
.nyc_output
# Documentation
README.md
*.md
# CI/CD
.gitea
# Other
*.log
.cache

View File

@@ -2,18 +2,16 @@ name: Deploy to Private Server
on: on:
push: push:
branches: [ "main" ] branches: ["main"]
jobs: jobs:
build: deploy:
runs-on: ubuntu-latest runs-on: homesrv
container:
image: node:20-slim
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Build Vite app - name: Build Docker image
run: | run: |
npm ci npm ci
npm run build npm run build

41
Dockerfile Normal file
View File

@@ -0,0 +1,41 @@
# Build stage
FROM node:20-alpine AS build
WORKDIR /app
# Copy package files
COPY package.json package-lock.json ./
# Install dependencies
RUN npm ci
# Copy source code
COPY . .
# Build the application
RUN npm run build
# Production stage
FROM nginx:alpine
# Copy built assets from build stage
COPY --from=build /app/dist /usr/share/nginx/html
RUN echo 'server { \
listen 80; \
server_name _; \
root /usr/share/nginx/html; \
index index.html; \
location / { \
try_files $uri $uri/ /index.html; \
} \
# Cache static assets \
location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg|woff|woff2|ttf|eot)$ { \
expires 1y; \
add_header Cache-Control "public, immutable"; \
} \
}' > /etc/nginx/conf.d/default.conf
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]