Skip to content
Snippets Groups Projects
Select Git revision
  • main default protected
1 result

Dockerfile

Blame
  • Dockerfile 290 B
    FROM rabbitmq:3.13.3-alpine
    LABEL author="Sofiane Lasri"
    
    RUN adduser --disabled-password --home /home/container container
    
    USER container
    ENV  USER=container HOME=/home/container
    
    WORKDIR /home/container
    
    COPY ./entrypoint.sh /entrypoint.sh
    
    CMD ["/bin/bash", "/entrypoint.sh"]