Sign inSign up

credyin/worker

By credyin

•Updated over 5 years ago

Base image for the worker service of credy-backend Django application

Image
0

1.8K

credyin/worker repository overview

⁠Description

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⁠

⁠Source Code of Image
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"]

Tag summary

Content type

Image

Digest

Size

556.1 MB

Last updated

over 5 years ago

docker pull credyin/worker