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

Former-commit-id: f8c48830f5
This commit is contained in:
anoracleofra-code
2026-03-09 06:01:05 -06:00
parent c96f6ad723
commit 24e4d331fc
+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