Merge branch 'main' of ssh://gitlab.plocserv.fr:2222/ploc300/portfolio_v2

This commit is contained in:
Ploc300
2025-02-18 14:19:47 +01:00
2 changed files with 7 additions and 6 deletions
+6 -5
View File
@@ -2,12 +2,13 @@ FROM node:23.7.0-alpine3.21 as builder
WORKDIR /app
COPY package*.json .
RUN npm ci --omit=dev && npm cache clean --force
COPY package*.json ./
RUN npm ci && npm cache clean --force
COPY . .
COPY . ./
RUN npm run build
RUN npm install -g vite
RUN npx vite build
FROM nginx:alpine
@@ -15,4 +16,4 @@ COPY --from=builder /app/dist /usr/share/nginx/html
EXPOSE 3006
CMD ["nginx", "-g", "daemon off;"]
CMD ["nginx", "-g", "daemon off;"]
+1 -1
View File
@@ -19,7 +19,7 @@ function Contact() {
},
{
"icon": <FaGitlab className="inline text-3xl" />,
"name": "Github",
"name": "Gitlab",
"link": "https://gitlab.plocserv.fr/ploc300",
},
{