10 Commits

Author SHA1 Message Date
4a24127ff5 Also update the nginx alpine packages 2022-07-15 16:02:29 +01:00
e4d4fcb5e5 Fix typo in package upgrade 2022-07-15 15:59:24 +01:00
631e93be1b Update the packages in alpine. 2022-07-15 15:58:19 +01:00
57f8dbbec1 replace node with alpine version 2022-07-15 15:53:50 +01:00
8340a42f4d Fluttershub.com does not currently run on the ARM Node. 2022-07-11 12:11:50 +01:00
e67c0699a7 This check prevents new images from being deployed, logic was flawed. 2022-07-11 12:04:34 +01:00
0a4a6f12e2 Update Links 2022-07-11 11:03:24 +01:00
0a2c6ba099 Merge pull request #23 from Fluttershub/dependabot/docker/node-18.5.0
Bump node from 18.4.0 to 18.5.0
2022-07-11 10:32:18 +01:00
dependabot[bot]
0d11da55e1 Bump node from 18.4.0 to 18.5.0
Bumps node from 18.4.0 to 18.5.0.

---
updated-dependencies:
- dependency-name: node
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-07-11 09:30:42 +00:00
9c46033ab4 Updated Parcel and added missing packages. 2022-07-11 10:24:14 +01:00
7 changed files with 16 additions and 9 deletions

View File

@@ -72,7 +72,7 @@ jobs:
Deploy: Deploy:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: Build_ARM64 needs: Build_x86
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Run Ansible playbook - name: Run Ansible playbook

View File

@@ -1,7 +1,9 @@
FROM node:18.4.0 AS base FROM node:18.6-alpine AS base
LABEL version="4.1.0" LABEL version="4.1.0"
LABEL description="" LABEL description=""
RUN apk --update --no-cache upgrade
WORKDIR /usr/src/app WORKDIR /usr/src/app
COPY ["package.json", "./"] COPY ["package.json", "./"]
COPY ["yarn.lock", "./"] COPY ["yarn.lock", "./"]
@@ -12,6 +14,9 @@ COPY ["src/", "./src"]
RUN npm run Prod RUN npm run Prod
FROM nginx:1.23.0-alpine as Web FROM nginx:1.23.0-alpine as Web
RUN apk --update --no-cache upgrade
LABEL maintainer="Phoenix (https://github.com/HotaruBlaze)" LABEL maintainer="Phoenix (https://github.com/HotaruBlaze)"
COPY docker/nginx.conf /etc/nginx/nginx.conf COPY docker/nginx.conf /etc/nginx/nginx.conf
COPY docker/web.conf /etc/nginx/conf.d/web.conf COPY docker/web.conf /etc/nginx/conf.d/web.conf

View File

@@ -2,7 +2,7 @@ version: "3"
services: services:
fluttershub.com: fluttershub.com:
image: ghcr.io/fluttershub/homepage:arm64-latest image: ghcr.io/fluttershub/homepage:x64-latest
restart: always restart: always
networks: networks:
- external - external

View File

@@ -18,7 +18,6 @@
mode: '0755' mode: '0755'
loop: loop:
- docker-compose.yml - docker-compose.yml
register: compose
- name: deploy Docker Compose stack if updated - name: deploy Docker Compose stack if updated
community.docker.docker_compose: community.docker.docker_compose:
@@ -26,4 +25,3 @@
pull: true pull: true
files: files:
- docker-compose.yml - docker-compose.yml
when: compose.changed

View File

@@ -14,7 +14,7 @@ html(lang='en')
.container .container
.pod .pod
.glow .glow
img#profile_pic(src='https://img.fluttershub.com/VjpiMs7xp60yEcAH.png', alt='') img#profile_pic(src='https://s3.fluttershub.com/fluttershub-com/public/profile_pic.png', alt='')
h1.welcome_text.text-flicker.text-flicker-1 Phoenix/Hotaru h1.welcome_text.text-flicker.text-flicker-1 Phoenix/Hotaru
p.about_me.standard_text.text-box-glow p.about_me.standard_text.text-box-glow
.pod .pod
@@ -24,4 +24,5 @@ html(lang='en')
a.standard_text.text-flicker-2(href="https://gitlab.com/HotaruBlaze") Gitlab a.standard_text.text-flicker-2(href="https://gitlab.com/HotaruBlaze") Gitlab
footer.standard_text.footer-slide footer.standard_text.footer-slide
.creator .creator
a.build_text(href="https://img.fluttershub.com/EgOwhwrHyHWw.png") Cookie? 🍪 a.build_text(href="https://www.youtube.com/watch?v=5DWFZhAVI3s") Cookie?
a.cookie(href="https://img.fluttershub.com/pdDK7pdVJZU3d9UI.jpg") 🍪

View File

@@ -2,5 +2,5 @@ meta(property='og:url', content='https://fluttershub.com')
meta(property='og:type', content='website') meta(property='og:type', content='website')
meta(property='og:title', content='Phoenix\'s Personal Website') meta(property='og:title', content='Phoenix\'s Personal Website')
meta(property='og:description', content='We got cookies and milk!') meta(property='og:description', content='We got cookies and milk!')
meta(property='og:image', content='http://storage.googleapis.com/api.fluttershub.com/images/public/profile_pic.jpg') meta(property='og:image', content='http://s3.fluttershub.com/fluttershub-com/public/profile_pic.png')
meta(property='og:image:secure_url', content='https://storage.googleapis.com/api.fluttershub.com/images/public/profile_pic.jpg') meta(property='og:image:secure_url', content='https://s3.fluttershub.com/fluttershub-com/public/profile_pic.png')

View File

@@ -60,6 +60,9 @@ body,html, .container {
-moz-user-select: text; -moz-user-select: text;
text-decoration: none; text-decoration: none;
} }
.cookie {
text-decoration: none !important;
}
.no_hightnight a:link, a{ .no_hightnight a:link, a{
color: inherit; color: inherit;