Skip to content
This repository has been archived by the owner on May 7, 2021. It is now read-only.

Commit

Permalink
Dockerfile: Simple Dockerfile
Browse files Browse the repository at this point in the history
Signed-off-by: Steve Milner <smilner@redhat.com>
  • Loading branch information
ashcrow committed Dec 10, 2019
1 parent b729d0b commit d92d502
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FROM registry.fedoraproject.org/fedora:31

WORKDIR /tmp/mantle
COPY . /tmp/mantle

RUN yum update -y --nodocs && \
yum install -y --nodocs make golang gcc && \
make && \
make install && \
rm -rf /tmp/mantle && \
yum remove -y make golang gcc && \
yum clean all

0 comments on commit d92d502

Please sign in to comment.