Skip to content

Instantly share code, notes, and snippets.

@atifazad
Last active February 21, 2020 21:40
Embed
What would you like to do?
Create your first Docker image based on alpine image
# Start with Linux Alpine image as base
FROM alpine:latest
# Install curl
apk add --no-cache curl
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment