mirror of
https://github.com/jesseduffield/lazygit.git
synced 2026-05-22 10:15:43 +02:00
8a1f965e64
Bumps [github.com/creack/pty](https://github.com/creack/pty) from 1.1.11 to 1.1.24. - [Release notes](https://github.com/creack/pty/releases) - [Commits](https://github.com/creack/pty/compare/v1.1.11...v1.1.24) --- updated-dependencies: - dependency-name: github.com/creack/pty dependency-version: 1.1.24 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
18 lines
329 B
Docker
18 lines
329 B
Docker
ARG GOVERSION=1.18.2
|
|
FROM golang:${GOVERSION}
|
|
|
|
# Set base env.
|
|
ARG GOOS=linux
|
|
ARG GOARCH=amd64
|
|
ENV GOOS=${GOOS} GOARCH=${GOARCH} CGO_ENABLED=0 GOFLAGS='-v -ldflags=-s -ldflags=-w'
|
|
|
|
# Pre compile the stdlib for 386/arm (32bits).
|
|
RUN go build -a std
|
|
|
|
# Add the code to the image.
|
|
WORKDIR pty
|
|
ADD . .
|
|
|
|
# Build the lib.
|
|
RUN go build
|