Importing chill-site repo here #10

Merged
damercier merged 77 commits from chill-site-repo into main 2026-04-14 19:42:03 +00:00
Showing only changes of commit 39d0e05ae7 - Show all commits
+4 -4
View File
@@ -9,16 +9,16 @@ WORKDIR /src
# Copie package.json et package-lock.json si présent
COPY package.json ./
# Installation des dépendances
RUN npm install --save-dev sass
# Build CSS (tailwind + scss)
RUN npm run build
# Copie le reste du code
COPY . .
# Build CSS (tailwind + scss)
RUN npm run build
EXPOSE 1313
CMD ["hugo", "server", "-D", "--bind", "0.0.0.0", "--baseURL", "http://localhost:1313", "--appendPort=false"]