Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
docker-images-aarch64
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
VideoLAN
docker-images-aarch64
Commits
bc1299f5
Commit
bc1299f5
authored
Dec 06, 2018
by
Konstantin Pavlov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added kaniko.
parent
316e28e0
Pipeline
#3330
passed with stage
in 3 minutes and 44 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
31 additions
and
0 deletions
+31
-0
Dockerfile
videolan-kaniko/Dockerfile
+30
-0
Makefile
videolan-kaniko/Makefile
+1
-0
No files found.
videolan-kaniko/Dockerfile
0 → 100644
View file @
bc1299f5
# Copyright 2018 Google, Inc. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Builds the static Go image to execute in a Kubernetes job
FROM
golang:1.10
WORKDIR
/go/src/github.com/GoogleContainerTools
RUN
git clone https://github.com/GoogleContainerTools/kaniko
&&
cd
kaniko
&&
make
FROM
scratch
COPY
--from=0 /go/src/github.com/GoogleContainerTools/kaniko/out/executor /kaniko/executor
COPY
--from=0 /go/src/github.com/GoogleContainerTools/kaniko/files/ca-certificates.crt /kaniko/ssl/certs/
COPY
--from=0 /go/src/github.com/GoogleContainerTools/kaniko/files/config.json /kaniko/.docker/
ENV
HOME /root
ENV
USER /root
ENV
PATH /usr/local/bin:/kaniko
ENV
SSL_CERT_DIR=/kaniko/ssl/certs
ENV
DOCKER_CONFIG /kaniko/.docker/
ENTRYPOINT
["/kaniko/executor"]
videolan-kaniko/Makefile
0 → 100644
View file @
bc1299f5
include
../common.mak
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment