diff --git a/barcamp2024-astro/Dockerfile b/barcamp2024-astro/Dockerfile new file mode 100644 index 0000000..2f0042c --- /dev/null +++ b/barcamp2024-astro/Dockerfile @@ -0,0 +1,26 @@ + +FROM node:18 AS builder + +WORKDIR /app + +COPY package*.json ./ +COPY tsconfig.json ./ +COPY astro.config.mjs ./ + +RUN npm install + +COPY . . + +RUN npm run build + +FROM node:18-alpine + +WORKDIR /app + +COPY --from=builder /app . + +RUN npm install --only=production + +EXPOSE 4321 + +CMD ["npm", "run", "preview", "--", "--host", "0.0.0.0"] diff --git a/barcamp2024-astro/src/components/elements/Footer.astro b/barcamp2024-astro/src/components/elements/Footer.astro index f8399d8..8a2483a 100644 --- a/barcamp2024-astro/src/components/elements/Footer.astro +++ b/barcamp2024-astro/src/components/elements/Footer.astro @@ -137,7 +137,7 @@ const footerLegal = [
-
Copyright © 2024 CICC PUCMM | Website by KATIÓN INTERACTIV +
Copyright © 2024 CICC PUCMM