Skip to content
This repository has been archived by the owner on Oct 22, 2021. It is now read-only.

BPM pid support in new container-run #1312

Merged
merged 3 commits into from
May 21, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,12 @@ ARG BASE_IMAGE=registry.opensuse.org/cloud/platform/quarks/sle_15_sp1/quarks-ope


################################################################################
FROM golang:1.13.15 AS containerrun
FROM golang:1.16.3 AS containerrun
ARG GOPROXY
ENV GOPROXY $GOPROXY

ENV GO111MODULE on

RUN CGO_ENABLED=0 go build -ldflags="-s -w" -o "/usr/local/bin/container-run" code.cloudfoundry.org/quarks-container-run/cmd
RUN CGO_ENABLED=0 go install -ldflags="-s -w" code.cloudfoundry.org/quarks-container-run/[email protected]
RUN mv /go/bin/cmd /usr/local/bin/container-run

################################################################################
FROM golang:1.16.3 AS build
Expand Down