mirror of
https://github.com/kemko/slurm.git
synced 2026-01-01 15:55:48 +03:00
11 lines
178 B
Docker
11 lines
178 B
Docker
FROM nginx:1.12
|
|
|
|
RUN set -ex && \
|
|
apt-get update && \
|
|
apt-get install -y procps && \
|
|
apt-get clean
|
|
|
|
COPY docker-entrypoint.sh /
|
|
|
|
ENTRYPOINT ["/docker-entrypoint.sh"]
|