buildscripts/cosmos-build/Dockerfile

13 lines
252 B
Docker
Raw Normal View History

2018-10-02 14:26:36 -07:00
FROM fedora:28
# 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/