Base image for the worker service of credy-backend Django application
1.8K
Base image for the worker service of the credy-backend application.
The source code and the necessary files can be found at https://github.com/credyin/asgard
FROM python:3.7-buster
# Copy the script and configurations
COPY deployment/* /
# Install Supervisord
RUN apt-get update && apt-get install -y supervisor \
&& rm -rf /var/lib/apt/lists/*
# Custom Supervisord config
COPY deployment/config/worker/supervisord.conf /etc/supervisor/conf.d/supervisord.conf
# Install the essential packages
RUN bash /install-essentials.sh
CMD ["/usr/bin/supervisord"]
Content type
Image
Digest
Size
556.1 MB
Last updated
over 5 years ago
docker pull credyin/worker