mirror of
https://github.com/kevinveenbirkenbach/homepage.veen.world.git
synced 2025-09-09 19:27:11 +02:00
Replaced German by English comments
This commit is contained in:
12
Dockerfile
12
Dockerfile
@@ -1,18 +1,18 @@
|
||||
# Basis-Image für Python
|
||||
# Base image for Python
|
||||
FROM python:slim
|
||||
|
||||
# Arbeitsverzeichnis festlegen
|
||||
# Set the working directory
|
||||
WORKDIR /app
|
||||
|
||||
# Abhängigkeiten kopieren und installieren
|
||||
# Copy and install dependencies
|
||||
COPY app/requirements.txt requirements.txt
|
||||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
|
||||
# Anwendungscode kopieren
|
||||
# Copy application code
|
||||
COPY app/ .
|
||||
|
||||
# Port freigeben
|
||||
# Expose port
|
||||
EXPOSE 5000
|
||||
|
||||
# Startbefehl
|
||||
# Start command
|
||||
CMD ["python", "app.py"]
|
||||
|
Reference in New Issue
Block a user