Skip to content

Instantly share code, notes, and snippets.

@alkelaun
alkelaun / Dockerfile
Created March 31, 2023 22:18 — forked from arifwn/Dockerfile
(Relatively) Simple Dockerfile that bundles Django, Nginx, Gunicorn, Supervisord, Celery, Redis, Memcached, wkhtmltopdf, nodejs and React frontend build in a single container
FROM python:3.8
ENV PYTHONUNBUFFERED 1
# Install node prereqs, nodejs and yarn
# Ref: https://deb.nodesource.com/setup_10.x
# Ref: https://yarnpkg.com/en/docs/install
RUN \
apt-get update && \
apt-get install -yqq apt-transport-https xfonts-base xfonts-75dpi libsasl2-dev
RUN \