Docker Image
Creation
# Sample Dockerfile
# Specify a base image from which an existing docker image will be created
FROM alpine:latest
# Download and install a dependency/dependencies
RUN apk add --update redis
# Specify the default command to be executed
CMD ["redis-server"]
Image Creation Flow

Reference
Last updated