buildscripts/cosmos-build/Dockerfile

13 lines
252 B
Docker
Raw Permalink Normal View History

2019-04-07 10:55:22 -07:00
FROM fedora:29
2018-10-02 14:26:36 -07:00
# Install build dependencies
RUN INSTALL_PKGS="git golang dep make" && \
dnf install -y --setopt=tsflags=nodocs $INSTALL_PKGS && \
dnf clean all -y
# GOPATH
ENV GOPATH=/go
# Inject build scripts
COPY ./scripts /build/scripts/