Skip to content

Commit

Permalink
add Dockerfile for ArchSpec (#28)
Browse files Browse the repository at this point in the history
* add Dockerfile for ArchSpec

Signed-off-by: Carlos Eduardo Arango Gutierrez <carangog@redhat.com>
  • Loading branch information
ArangoGutierrez authored and alalazo committed Nov 12, 2020
1 parent 782a816 commit 5c2bdeb
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Universal Base Image (UBI) for Python 3.8
# https://developers.redhat.com/products/rhel/ubi
# https://catalog.redhat.com/software/containers/ubi8/python-38/5dde9cacbed8bd164a0af24a
FROM registry.access.redhat.com/ubi8/python-38

USER root

RUN pip3 install archspec

RUN useradd archspec
USER archspec

ENTRYPOINT ["archspec"]

0 comments on commit 5c2bdeb

Please sign in to comment.