This repository has been archived on 2025-02-01. You can view files and clone it, but cannot push or open issues or pull requests.
django-stock/Containerfile

15 lines
364 B
Docker

FROM docker.io/python:3.9-alpine
# Allows docker to cache installed dependencies between builds
COPY requirements.txt requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
COPY . code
WORKDIR /code
EXPOSE 8000
RUN python3 /code/manage.py collectstatic --no-input
ENTRYPOINT ["gunicorn"]
CMD ["djangotea.wsgi:application", "--bind=0.0.0.0:8000"]