fix: Correct public directory path in Dockerfile

This commit is contained in:
courtmanr@gmail.com
2025-04-24 16:27:05 +01:00
parent 8e863fd57e
commit f77fcdf95a
+1 -1
View File
@@ -21,7 +21,7 @@ RUN cd server && npm install
# Copy server code first
COPY server/ ./server/
# Copy public directory if it's used by the server (adjust if needed)
COPY public/ ./public/
COPY src/public/ ./public/
# Application listens on port 7655 by default (as per .env.example)
EXPOSE 7655