GithubHelp home page GithubHelp logo

dockerfile-from-the-ground-up's Introduction

Dockerfile from the ground up

From Scratch!

You can statically compile Go using the golang Dockerfile.

docker run --rm -v "$PWD/main":/usr/src/main -w /usr/src/main -e GOOS=linux -e CGO_ENABLED=0 golang:alpine go build -v

And build the resultant docker file using:

docker build -t golang-test-service .

And run it using:

docker run golang-test-service

Getting the Ca Certs file:

You can use Docker and Alpine to get this!

docker run -v $PWD:/certs alpine /bin/sh -c 'apk --update upgrade && apk add curl ca-certificates && update-ca-certificates && cp /etc/ssl/certs/ca-certificates.crt /certs'

Examine the size of the resultant image by:

docker images golang-test-service

And the layer history:

docker history golang-test-service

It's pretty small! My output gave me

IMAGE               CREATED             CREATED BY                                      SIZE                COMMENT
4035db88817b        3 hours ago         /bin/sh -c #(nop)  CMD ["/main"]                0 B
9188fd0cc20d        3 hours ago         /bin/sh -c #(nop) %s %s in %s  ADD file:4c976   7.636 MB
edf5ead17421        3 hours ago         /bin/sh -c #(nop) %s %s in %s  ADD file:c6245   274.3 kB

dockerfile-from-the-ground-up's People

Contributors

mattjtodd avatar

Stargazers

Michel Uncini avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.