mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
18 lines
478 B
Docker
18 lines
478 B
Docker
FROM fedora:rawhide
|
|
|
|
RUN yum -y install systemd procps
|
|
|
|
ARG release_tarball
|
|
|
|
COPY $release_tarball .
|
|
|
|
COPY test_installation.sh test_installation.sh
|
|
|
|
RUN mkdir install && \
|
|
tar -xf $release_tarball -C install --strip-components 1 && \
|
|
cd install && \
|
|
cp featurebase /usr/local/bin/featurebase && \
|
|
cp featurebase.redhat.service /etc/systemd/system/featurebase.service && \
|
|
cp featurebase.conf /etc/featurebase.conf
|
|
|
|
CMD ["/bin/bash", "test_installation.sh"]
|