1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2024-11-28 09:08:41 +02:00

remove the -o option from Dockerfile

This commit is contained in:
skanehira 2019-03-02 19:36:35 +09:00 committed by Jesse Duffield
parent 63e2ccfccf
commit 1b6e46973e

View File

@ -5,7 +5,7 @@
FROM golang:alpine
WORKDIR /go/src/github.com/jesseduffield/lazygit/
COPY ./ .
RUN CGO_ENABLED=0 GOOS=linux go build -o lazygit .
RUN CGO_ENABLED=0 GOOS=linux go build
FROM alpine:latest
RUN apk add -U git xdg-utils