fixed node

This commit is contained in:
2023-06-11 23:18:31 +02:00
parent 3a0ce7601c
commit a7edd58d1f
2 changed files with 4 additions and 4 deletions

View File

@@ -21,7 +21,7 @@ RUN apt-get update && apt-get install -y python3 python3-pip
RUN pip3 install --no-cache-dir -r requirements.txt
# Öffne den Port des Web-Servers
EXPOSE 80
EXPOSE 3000
# Starte den Web-Server
CMD ["python", "server.js"]
CMD ["node", "server.js"]