Skip to content

Commit

Permalink
production deployの追加
Browse files Browse the repository at this point in the history
  • Loading branch information
irumaru committed Oct 30, 2023
1 parent ef0f923 commit ff5969c
Show file tree
Hide file tree
Showing 4 changed files with 108 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/Astro-deploy-Production.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: Deploy to Production

on:
push:
branches:
- "main"
workflow_dispatch:

env:
SITE: https://numasai2023.mikusorigin.com/

jobs:
build:
runs-on: ubuntu-latest
env:
IMAGE: "ghcr.io/cit-nclab/mo12-hp:${{ github.sha }}"
# このリポジトリに対する書き込み権限を付与
permissions:
contents: write
packages: write
steps:
-
name: Checkout
uses: actions/checkout@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
-
name: Build and push
uses: docker/build-push-action@v4
with:
context: .
file: ./container/Dockerfile
push: true
tags: ${{ env.IMAGE }}
-
name: chage docker image
uses: mikefarah/yq@master
with:
cmd: yq '.spec.template.spec.containers[0].image = env(IMAGE)' -i ${{ env.WORK_DIR }}deploy/syncing/deployment.yaml
-
name: commit
uses: stefanzweifel/git-auto-commit-action@v4
11 changes: 11 additions & 0 deletions container/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
FROM node:lts AS build
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build

FROM nginx:alpine AS runtime
COPY ./container/nginx.conf /etc/nginx/nginx.conf
COPY --from=build /app/dist /usr/share/nginx/html
EXPOSE 80
31 changes: 31 additions & 0 deletions container/nginx.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
worker_processes 1;

events {
worker_connections 1024;
}

http {
server {
listen 80;
server_name _;

root /usr/share/nginx/html;
index index.html index.htm;
include /etc/nginx/mime.types;

gzip on;
gzip_min_length 1000;
gzip_proxied expired no-cache no-store private auth;
gzip_types text/plain text/css application/json application/javascript application/x-javascript text/xml application/xml application/xml+rss text/javascript;

error_page 404 /404.html;
location = /404.html {
root /usr/share/nginx/html;
internal;
}

location / {
try_files $uri $uri/index.html =404;
}
}
}
17 changes: 17 additions & 0 deletions deploy/syncing/deployment.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: web
spec:
replicas: 1
selector:
matchLabels:
app: web
template:
metadata:
labels:
app: web
spec:
containers:
- name: web
image: ""

0 comments on commit ff5969c

Please sign in to comment.