Deprecate branch 1.12 (#1)
This commit is contained in:
parent
cc29f98282
commit
9fff14b466
|
|
@ -1,21 +0,0 @@
|
|||
FROM bitnami/minideb:buster
|
||||
LABEL maintainer "Bitnami <containers@bitnami.com>"
|
||||
|
||||
# Install required system packages and dependencies
|
||||
RUN install_packages build-essential ca-certificates curl git libc6 pkg-config procps sudo unzip wget
|
||||
RUN wget -nc -P /tmp/bitnami/pkg/cache/ https://downloads.bitnami.com/files/stacksmith/golang-1.12.17-0-linux-amd64-debian-10.tar.gz && \
|
||||
echo "4c6a9b214d87c3f181a0b7ce4c12fc8f226d1d5c44b968fa0fdefc7fe8c43ec5 /tmp/bitnami/pkg/cache/golang-1.12.17-0-linux-amd64-debian-10.tar.gz" | sha256sum -c - && \
|
||||
tar -zxf /tmp/bitnami/pkg/cache/golang-1.12.17-0-linux-amd64-debian-10.tar.gz -P --transform 's|^[^/]*/files|/opt/bitnami|' --wildcards '*/files' && \
|
||||
rm -rf /tmp/bitnami/pkg/cache/golang-1.12.17-0-linux-amd64-debian-10.tar.gz
|
||||
RUN apt-get update && apt-get upgrade -y && \
|
||||
rm -r /var/lib/apt/lists /var/cache/apt/archives
|
||||
RUN mkdir -p "/go/src" "/go/bin" && chmod -R 777 "/go"
|
||||
|
||||
COPY rootfs /
|
||||
ENV BITNAMI_APP_NAME="golang" \
|
||||
BITNAMI_IMAGE_VERSION="1.12.17-debian-10-r34" \
|
||||
GOPATH="/go" \
|
||||
PATH="/go/bin:/opt/bitnami/go/bin:$PATH"
|
||||
|
||||
WORKDIR $GOPATH
|
||||
CMD [ "bash" ]
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
version: '2'
|
||||
services:
|
||||
golang:
|
||||
tty: true # Enables debugging capabilities when attached to this container.
|
||||
image: bitnami/golang:1.12-debian-10
|
||||
command: ["sleep", "infinity"] # To keep the container running
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
Bitnami containers ship with software bundles. You can find the licenses under:
|
||||
/opt/bitnami/nami/COPYING
|
||||
/opt/bitnami/[name-of-bundle]/licenses/[bundle-version].txt
|
||||
Loading…
Reference in New Issue