mirror of
https://github.com/ClusterCockpit/cc-docker.git
synced 2024-11-10 11:07:26 +01:00
11 lines
276 B
Docker
11 lines
276 B
Docker
FROM clustercockpit/slurm.base:latest
|
|
MAINTAINER Jan Eitzinger <jan.eitzinger@fau.de>
|
|
|
|
# clean up
|
|
RUN rm -f /root/rpmbuild/RPMS/slurm-*.rpm \
|
|
&& yum clean all \
|
|
&& rm -rf /var/cache/yum
|
|
|
|
COPY docker-entrypoint.sh /docker-entrypoint.sh
|
|
ENTRYPOINT ["/docker-entrypoint.sh"]
|