Not intended to be used directly - build your own docker image on top of this one.
Put your app into /app.
Example final Dockerfile:
FROM vrusinov/django-build:latest as build
# Install additional requirements, e.g.:
RUN emerge -v dev-python/django-environ
FROM vrusinov/django:3.2.5
COPY --from=build /usr/lib/python3.8/site-packages/environ/ /usr/lib/python3.8/site-packages/environ/
COPY . /app
ENTRYPOINT ["/bin/entrypoint.sh"]
--settings flag, e.g. 'config.settings.production'Listens on 0.0.0.0:8000, currently with no ability to override.
3.2.6.2022-01-23Content type
Image
Digest
sha256:75a52262a…
Size
94.4 MB
Last updated
about 1 year ago
docker pull vrusinov/django