Dateien für die Aufgabe 2.4: Netzwerke und Kommunikation zwischen Containern
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Dockerfile 165B

1234567891011
  1. # Dockerfile
  2. FROM python:3.9-slim
  3. WORKDIR /app
  4. COPY requirements.txt .
  5. RUN pip install --no-cache-dir -r requirements.txt
  6. COPY app.py .
  7. CMD ["python", "app.py"]