diff options
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -18,6 +18,12 @@ RUN asdf install FROM registry.gitlab.com/xlgmokha/debian-tools/php:latest AS php-builder RUN asdf current +FROM registry.gitlab.com/xlgmokha/debian-tools/python:latest AS python-builder +RUN asdf current + +FROM registry.gitlab.com/xlgmokha/debian-tools/nodejs:latest AS nodejs-builder +RUN asdf current + FROM debian:stable-slim ENV LM_HOME=/opt/license-management ENV PATH="${PATH}:/root/.asdf/shims:/root/.asdf/bin" @@ -99,8 +105,10 @@ RUN apt-get update -q \ WORKDIR $HOME COPY config/* ./ COPY --from=gem-builder /opt/license-management/*.gem $LM_HOME/ +COPY --from=nodejs-builder /root/.asdf/installs/nodejs $HOME/.asdf/installs/nodejs +COPY --from=php-builder /root/.asdf/installs/php $HOME/.asdf/installs/php +COPY --from=python-builder /root/.asdf/installs/python $HOME/.asdf/installs/python COPY --from=ruby-builder /root/.asdf/installs/ruby $HOME/.asdf/installs/ruby -COPY --from=php-builder /root/.asdf/installs/ruby $HOME/.asdf/installs/php RUN asdf install && asdf current COPY test /test COPY run.sh / |
