1
0
mirror of https://github.com/openshift/source-to-image.git synced 2026-02-05 12:44:54 +01:00
Files
source-to-image/doc.go
Rodolfo Carvalho 8621b172b5 Apply several small fixes from go vet and others
Includes:
- Changes to commentaries to follow godoc conventions;
- Fix shadowing of identifiers;
- Missing error checks;
- Fix incorrect usages of fmt.Print* functions;
- Initialize struct literals from other packages using explicit field
  names;
- Rename variables to follow Go conventions.
2016-05-18 12:06:08 +02:00

6 lines
300 B
Go

// Package s2i is a tool for building reproducible Docker images. The s2i
// command produces ready-to-run images by injecting source code into a Docker
// image and assembling a new Docker image which incorporates the base image and
// built source, and is ready to use with docker run.
package s2i