anpassungen an kundenserver
This commit is contained in:
14
Dashboard_V2/Dockerfile
Normal file
14
Dashboard_V2/Dockerfile
Normal file
@@ -0,0 +1,14 @@
|
||||
FROM python:3.9-slim
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
# Abhängigkeiten kopieren und installieren
|
||||
COPY requirements.txt requirements.txt
|
||||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
|
||||
# Anwendungscode kopieren
|
||||
COPY . .
|
||||
|
||||
EXPOSE 9559
|
||||
|
||||
CMD ["python", "app.py"]
|
||||
Reference in New Issue
Block a user