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_py 145B

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