Skip to content
GitLab
Menu
Why GitLab
Pricing
Contact Sales
Explore
Why GitLab
Pricing
Contact Sales
Explore
Sign in
Get free trial
Primary navigation
Search or go to…
Project
LIGO
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Privacy statement
Keyboard shortcuts
?
What's new
4
Snippets
Groups
Projects
Show more breadcrumbs
ligolang
LIGO
Commits
00863157
Commit
00863157
authored
5 years ago
by
Tom Jack
Browse files
Options
Downloads
Patches
Plain Diff
Delete duplicated file
parent
25207b62
No related branches found
No related tags found
Loading
Pipeline
#85536879
passed
5 years ago
Stage: build_and_package_binaries
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
scripts/distribution/generic/package_dockerized.sh
+0
-20
0 additions, 20 deletions
scripts/distribution/generic/package_dockerized.sh
with
0 additions
and
20 deletions
scripts/distribution/generic/package_dockerized.sh
deleted
100644 → 0
+
0
−
20
View file @
25207b62
#!/bin/sh
dockerfile_name
=
"package"
dockerfile
=
""
.
./scripts/distribution/generic/parameters.sh
if
[
-n
"
$dockerfile
"
]
;
then
echo
"Packaging LIGO for
$target
"
echo
"Using Dockerfile:
$dockerfile
"
echo
"Using pre-built image:
$tag_build
"
echo
"Version:
$version
\n
"
# Build the package
docker build
--build-arg
targetBuildImage
=
"
$tag_build
"
--build-arg
version
=
"
$version
"
-t
"
$tag_package
"
-f
"
$dockerfile
"
.
# Copy the package to host's (our own) file system
mkdir
-p
"
$PWD
/dist/package/
$target
"
docker run
-v
$PWD
:
$PWD
"
$tag_package
"
cp
-r
/package/dist/.
"
$PWD
/dist/package/
$target
"
else
echo
"Dockerfile not found for target:
$target
"
fi
\ 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