mirror of
https://github.com/NeonGamerBot-QK/saahild.com.git
synced 2024-11-21 12:33:38 +00:00
feat: docker (#5)
Co-authored-by: zeon-neon[bot] <136533918+zeon-neon[bot]@users.noreply.github.com>
This commit is contained in:
parent
c9b4566e1d
commit
b1fd32ecc6
5 changed files with 86 additions and 43 deletions
3
.dockerignore
Normal file
3
.dockerignore
Normal file
|
@ -0,0 +1,3 @@
|
|||
node_modules
|
||||
.github
|
||||
scripts
|
22
.github/workflows/build-docker.yml
vendored
Normal file
22
.github/workflows/build-docker.yml
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
name: publish
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- "main"
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
publish-docker-image:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Login to GitHub Container Registry
|
||||
uses: docker/login-action@v1
|
||||
with:
|
||||
registry: ghcr.io
|
||||
username: ${{ github.actor }}
|
||||
password: ${{ secrets.MY_TOKEN }}
|
||||
- name: Build the Docker image
|
||||
run: |
|
||||
docker build . --tag ghcr.io/neongamerbot-qk/saahildcom:latest
|
||||
docker push ghcr.io/neongamerbot-qk/saahildcom:latest
|
14
Dockerfile
Normal file
14
Dockerfile
Normal file
|
@ -0,0 +1,14 @@
|
|||
FROM node:20-alpine as builder
|
||||
WORKDIR /app
|
||||
COPY package*.json .
|
||||
COPY yarn*.lock .
|
||||
RUN yarn install
|
||||
COPY . .
|
||||
RUN yarn build
|
||||
|
||||
#Stage 2
|
||||
FROM nginx:1.19.0
|
||||
WORKDIR /usr/share/nginx/html
|
||||
RUN rm -rf ./*
|
||||
COPY --from=builder /app/build .
|
||||
ENTRYPOINT ["nginx", "-g", "daemon off;"]
|
7
docker-compose.yml
Normal file
7
docker-compose.yml
Normal file
|
@ -0,0 +1,7 @@
|
|||
name: <your project name>
|
||||
services:
|
||||
<to-change-here>:
|
||||
ports:
|
||||
- 3000:80
|
||||
container_name: saahildcom
|
||||
image: <to-change-here>:latest
|
|
@ -1,52 +1,49 @@
|
|||
import { mdiBullet } from "@mdi/js";
|
||||
import Icon from "@mdi/react";
|
||||
import { useEffect, useState } from "react";
|
||||
import { mdiBullet } from '@mdi/js'
|
||||
import Icon from '@mdi/react'
|
||||
import { useEffect, useState } from 'react'
|
||||
|
||||
export default function AboutPage() {
|
||||
const [currentGrade, setCurrentGrade] = useState<string>("0th");
|
||||
export default function AboutPage () {
|
||||
const [currentGrade, setCurrentGrade] = useState<string>("0th")
|
||||
useEffect(() => {
|
||||
let year: number = new Date().getFullYear();
|
||||
let year:number = new Date().getFullYear()
|
||||
if (year > 2027) {
|
||||
let result = year - 2027;
|
||||
switch (result) {
|
||||
case 0:
|
||||
setCurrentGrade(`12th`);
|
||||
break;
|
||||
default:
|
||||
setCurrentGrade(`Collage Student`);
|
||||
break;
|
||||
let result = year - 2027
|
||||
switch(result) {
|
||||
case 0:
|
||||
setCurrentGrade(`12th`)
|
||||
break;
|
||||
default:
|
||||
setCurrentGrade(`Collage Student`)
|
||||
break;
|
||||
}
|
||||
} else {
|
||||
setCurrentGrade(`${Math.abs(2027 - 2024 - 13)}th`);
|
||||
setCurrentGrade(`${Math.abs((2027 - 2024) - 13)}th`)
|
||||
}
|
||||
});
|
||||
return (
|
||||
<div className={"hero min-h-screen md:ml-0 ml-2"}>
|
||||
<div className="container">
|
||||
<h1 className="text-3xl font-bold">
|
||||
Some info about <span className="text-highlight">me</span>
|
||||
</h1>
|
||||
<div>
|
||||
<blockquote className="mb-0 blockquote">
|
||||
<p style={{ textAlign: "justify" }}>
|
||||
Hi Everyone, I am{" "}
|
||||
<span className="text-highlight ">Saahil dutta, </span>
|
||||
from <span className="text-highlight "> USA </span>
|
||||
<br />I am a {currentGrade} grader in KCD.
|
||||
<br />
|
||||
<br />
|
||||
Apart from coding, some other activities that I love to do!
|
||||
</p>
|
||||
<ul>
|
||||
<li className="about-activity">
|
||||
<Icon path={mdiBullet} className="inline-block" size={1} />{" "}
|
||||
Playing Games
|
||||
</li>
|
||||
<li className="about-activity">
|
||||
<Icon path={mdiBullet} className="inline-block" size={1} />{" "}
|
||||
Eating different types of food
|
||||
</li>
|
||||
{/* <li className="about-activity">
|
||||
})
|
||||
return <div className={'hero min-h-screen md:ml-0 ml-2'}>
|
||||
<div className='container'>
|
||||
<h1 className='text-3xl font-bold'>
|
||||
Some info about <span className='text-highlight'>me</span>
|
||||
</h1>
|
||||
<div>
|
||||
<blockquote className='mb-0 blockquote'>
|
||||
<p style={{ textAlign: 'justify' }}>
|
||||
Hi Everyone, I am{' '}
|
||||
<span className='text-highlight '>Saahil dutta, </span>
|
||||
from <span className='text-highlight '> USA </span>
|
||||
<br />I am a {currentGrade} grader in KCD.
|
||||
<br />
|
||||
<br />
|
||||
Apart from coding, some other activities that I love to do!
|
||||
</p>
|
||||
<ul>
|
||||
<li className='about-activity'>
|
||||
<Icon path={mdiBullet} className='inline-block'size={1} /> Playing Games
|
||||
</li>
|
||||
<li className='about-activity'>
|
||||
<Icon path={mdiBullet} className='inline-block' size={1} /> Eating different types of food
|
||||
</li>
|
||||
{/* <li className="about-activity">
|
||||
<ImPointRight className="inline-block"/> Traveling
|
||||
</li> */}
|
||||
<li className="about-activity">
|
||||
|
|
Loading…
Reference in a new issue