2019-04-12 17:42:21 +00:00
|
|
|
# Copyright 2018, 2019 the Velero contributors.
|
2017-08-02 17:27:17 +00:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
2019-05-15 19:54:14 +00:00
|
|
|
FROM ubuntu:bionic
|
2017-08-02 17:27:17 +00:00
|
|
|
|
2019-04-12 17:42:21 +00:00
|
|
|
LABEL maintainer="Steve Kriss <krisss@vmware.com>"
|
2017-08-02 17:27:17 +00:00
|
|
|
|
2019-01-25 03:33:07 +00:00
|
|
|
ADD /bin/linux/amd64/velero-restic-restore-helper .
|
2017-08-02 17:27:17 +00:00
|
|
|
|
2020-01-17 01:00:34 +00:00
|
|
|
USER nobody:nogroup
|
2017-10-25 13:53:43 +00:00
|
|
|
|
2019-01-25 03:33:07 +00:00
|
|
|
ENTRYPOINT [ "/velero-restic-restore-helper" ]
|