mirror of
https://github.com/dokku/dokku.git
synced 2026-08-29 10:08:53 +02:00
8 lines
207 B
Docker
8 lines
207 B
Docker
ARG APP_IMAGE
|
|
FROM $APP_IMAGE
|
|
|
|
RUN printf '#!/usr/bin/env bash\nexec bash -l -c -- \"$*\"\n' > /usr/local/bin/entrypoint && \
|
|
chmod +x /usr/local/bin/entrypoint
|
|
|
|
ENTRYPOINT ["/usr/local/bin/entrypoint"]
|