Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
statsbot-frontend
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-frontend
Commits
14406a13
Verified
Commit
14406a13
authored
7 years ago
by
Janne Mareike Koschinski
Browse files
Options
Downloads
Patches
Plain Diff
Attempt at fixing missing templates
parent
84ea522d
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
+7
-6
7 additions, 6 deletions
Dockerfile
with
7 additions
and
6 deletions
Dockerfile
+
7
−
6
View file @
14406a13
FROM
golang:alpine
as
builder
FROM
golang:alpine
as
go_builder
RUN
apk add
--no-cache
curl git gcc musl-dev
RUN
curl https://glide.sh/get | sh
WORKDIR
/go/src/app
COPY
glide.
lock glide.yaml
./
COPY
glide.
*
./
RUN
glide
install
COPY
.
.
COPY
*.go
.
/
RUN
CGO_ENABLED
=
0
GOOS
=
linux go build
-a
app .
FROM
node:alpine
as
asset_builder
...
...
@@ -15,10 +16,10 @@ RUN npm install
COPY
assets /app/assets
RUN
npm run build
FROM
alpine
FROM
alpine
:3.7
WORKDIR
/
COPY
--from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
COPY
--from=builder /go/src/app/app /app
COPY
--from=
go_
builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
COPY
--from=
go_
builder /go/src/app/app /app
COPY
templates /templates
COPY
--from=asset_builder /app/assets /assets
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