Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 390 Bytes

dockerfile.md

File metadata and controls

17 lines (14 loc) · 390 Bytes

Dockerfile

What is it ?

  • Textdatei, die Linux - Kommandos enthält
    • die man auch auf der Kommandozeile ausführen könnte
    • Diese erledigen alle Aufgaben, die nötig sind, um ein Image zusammenzustellen
    • mit docker build wird dieses image erstellt

Exmaple

# syntax=docker/dockerfile:1
FROM ubuntu:18.04
COPY . /app
RUN make /app
CMD python /app/app.py