fix: install ws module dependencies in backend Dockerfile for AIS proxy

This commit is contained in:
anoracleofra-code
2026-03-09 06:01:05 -06:00
parent e2e1cda5cb
commit f8c48830f5
+3
View File
@@ -16,6 +16,9 @@ RUN pip install --no-cache-dir -r requirements.txt
# Copy source code
COPY . .
# Install Node.js dependencies (ws module for AIS WebSocket proxy)
RUN npm install --omit=dev
# Create a non-root user for security
RUN adduser --system --uid 1001 backenduser \
&& chown -R backenduser /app