Update docker files to account for tailwindcss
authorAdam Dullage <redacted>
Fri, 10 May 2024 06:08:49 +0000 (07:08 +0100)
committerAdam Dullage <redacted>
Fri, 10 May 2024 06:08:49 +0000 (07:08 +0100)
.dockerignore
Dockerfile

index 8e37478fb55ceac77fec893089a32749d54eb060..8f76471268e60468a825c16c9e29d1336e5dc723 100644 (file)
@@ -11,5 +11,7 @@
 !healthcheck.sh\r
 !package-lock.json\r
 !package.json\r
+!postcss.config.js\r
 !server/**\r
+!tailwind.config.js\r
 !vite.config.js\r
index 6705abab7611328fdd4ea12d3cdc7c25dc57450e..3702a2f16570ec6963f34320422423b5a4e8db2c 100644 (file)
@@ -8,7 +8,14 @@ ARG BUILD_DIR
 RUN mkdir ${BUILD_DIR}\r
 WORKDIR ${BUILD_DIR}\r
 \r
-COPY package.json package-lock.json vite.config.js .htmlnanorc ./\r
+COPY .htmlnanorc \\r
+    package.json \\r
+    package-lock.json \\r
+    postcss.config.js \\r
+    tailwind.config.js \\r
+    vite.config.js \\r
+    ./\r
+\r
 RUN npm ci\r
 \r
 COPY client ./client\r
git clone https://git.99rst.org/PROJECT