Compare commits

...

4 Commits

Author SHA1 Message Date
ac14112eed add actions
All checks were successful
Build / build (push) Successful in 4m10s
2025-04-02 21:27:19 +02:00
70866e7f5b add dockerfile 2025-04-02 21:27:04 +02:00
711993220b add dockerfile 2025-04-02 02:07:29 +02:00
54970c2d33 ensure pre-rendering does not fail 2025-04-02 02:07:22 +02:00
5 changed files with 54 additions and 7 deletions

4
.dockerignore Normal file
View File

@ -0,0 +1,4 @@
.next/
node_modules/
.env*
next-env.d.ts

View File

@ -0,0 +1,26 @@
name: Build
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Login to Docker
uses: https://github.com/docker/login-action@v3
with:
registry: git.nrx.sh
username: ${{ secrets.docker_username }}
password: ${{ secrets.docker_password }}
- name: Build Docker image
run: |
docker build -t nrx-sh:latest . && \
docker tag nrx-sh:latest git.nrx.sh/naresh/nrx-sh:latest && \
docker push git.nrx.sh/naresh/nrx-sh:latest

21
Dockerfile Normal file
View File

@ -0,0 +1,21 @@
FROM node:current-alpine AS build
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm install
COPY ./prisma ./prisma
RUN npx prisma generate
COPY ./next.config.ts ./tsconfig.json ./eslint.config.mjs ./
COPY ./src ./src
RUN npm run build
RUN cp -r .next/static .next/standalone/.next/
FROM node:current-alpine AS production
COPY --from=build /app/.next/standalone /app
EXPOSE 3000
WORKDIR /app
CMD ["node", "server.js"]

View File

@ -7,7 +7,7 @@ import ReCAPTCHA from "react-google-recaptcha";
export default function ContactComponent({
recaptchaSiteKey,
}: {
recaptchaSiteKey: string;
recaptchaSiteKey: string | undefined;
}) {
const inputStyle = {
backgroundColor: "#111",
@ -57,7 +57,7 @@ export default function ContactComponent({
{"success" in state && "Submitted successfully!"}
</span>
)}
<ReCAPTCHA sitekey={recaptchaSiteKey} theme="dark" />
<ReCAPTCHA sitekey={recaptchaSiteKey ?? ""} theme="dark" />
<button
type="submit"
style={{
@ -71,7 +71,7 @@ export default function ContactComponent({
onMouseLeave={(e) => {
if (!pending) e.currentTarget.style.backgroundColor = "#111";
}}
disabled={pending}
disabled={pending || recaptchaSiteKey == null}
>
{pending ? "Sending..." : "Submit"}
</button>

View File

@ -4,9 +4,5 @@ import ContactComponent from "./ContactComponent";
export default async function ContactPage() {
const recaptchaSiteKey = process.env.RECAPTCHA_SITE_KEY;
if (!recaptchaSiteKey) {
console.error("ReCAPTCHA site key is not set");
throw new Error("ReCAPTCHA not correctly configured");
}
return <ContactComponent recaptchaSiteKey={recaptchaSiteKey} />;
}