Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
statsbot
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Janne Mareike Koschinski
statsbot
Commits
b491c9f3
Verified
Commit
b491c9f3
authored
7 years ago
by
Janne Mareike Koschinski
Browse files
Options
Downloads
Patches
Plain Diff
Implement minimal docker builds
parent
80722164
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
Dockerfile
+8
-5
8 additions, 5 deletions
Dockerfile
with
8 additions
and
5 deletions
Dockerfile
+
8
−
5
View file @
b491c9f3
FROM
golang
FROM
golang
as
builder
RUN
curl https://glide.sh/get | sh
WORKDIR
/go/src/app
COPY
. .
COPY
glide.lock glide.yaml ./
RUN
glide
install
RUN
go build
-a
app .
COPY
. .
RUN
CGO_ENABLED
=
0
GOOS
=
linux go build
-a
app .
ENTRYPOINT
["./app"]
\ No newline at end of file
FROM
scratch
COPY
--from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
COPY
--from=builder /go/src/app/app /app
ENTRYPOINT
["/app"]
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment