DockerTriedwithBAsicsofDockerCommands.pptx

manoj02srivastava 4 views 1 slides Jul 31, 2024
Slide 1
Slide 1 of 1
Slide 1
1

About This Presentation

BAsics of Docker


Slide Content

Sample # Use an official Python runtime as a parent image FROM python:3.9-slim # Set the working directory in the container WORKDIR /app # Copy the current directory contents into the container at /app COPY . /app