10 lines
308 B
YAML
10 lines
308 B
YAML
# Copyright Broadcom, Inc. All Rights Reserved.
|
|
# SPDX-License-Identifier: APACHE-2.0
|
|
|
|
version: '2'
|
|
services:
|
|
golang:
|
|
tty: true # Enables debugging capabilities when attached to this container.
|
|
image: docker.io/bitnami/golang:1.22
|
|
command: ["sleep", "infinity"] # To keep the container running
|