mirror of
https://github.com/Luzifer/repo-template.git
synced 2024-11-10 16:40:04 +00:00
12 lines
306 B
Text
12 lines
306 B
Text
|
# Copyright 2018 The Go Authors. All rights reserved.
|
||
|
# Use of this source code is governed by a BSD-style
|
||
|
# license that can be found in the LICENSE file.
|
||
|
|
||
|
FROM scratch
|
||
|
LABEL maintainer "golang-dev@googlegroups.com"
|
||
|
|
||
|
COPY ca-certificates.crt /etc/ssl/certs/
|
||
|
COPY h2demo /
|
||
|
ENTRYPOINT ["/h2demo", "-prod"]
|
||
|
|