I hereby claim:
- I am angerm on github.
- I am angermcs (https://keybase.io/angermcs) on keybase.
- I have a public key ASCKf33MOjtp3_o81ajo42hqAWJciBiGRSpAcL4fsd2IHwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
package utils | |
import ( | |
"context" | |
"io" | |
"io/ioutil" | |
"net" | |
"net/http" | |
"strings" | |
"time" |
FROM golang:buster AS build_base | |
WORKDIR /go/src/app | |
COPY go.mod . | |
COPY go.sum . | |
ENV GO111MODULE=on | |
ENV GOOS=linux | |
ENV GOARCH=amd64 | |
RUN go mod download | |
FROM build_base as builder |
FROM gradle:jdk11 as builder | |
RUN mkdir /workspace | |
RUN chown -R gradle /workspace | |
USER gradle | |
WORKDIR /workspace | |
COPY . /workspace |
This was the command line I had to use to get it to install. It was trying to link against a more modern version of OpenSSL otherwise that did not work.
CFLAGS=-Wno-implicit-function-declaration CPPFLAGS="-I$(brew --prefix [email protected])/include -I$(xcrun --show-sdk-path)/usr/include" LDFLAGS="-L$(brew --prefix [email protected])/lib -Wno-implicit-function-declaration" pyenv install 3.6.15