Add Dockerfile

pull/1/head
Luca 3 years ago
parent 0c4b1684d3
commit d4e795c07d

@ -0,0 +1,7 @@
**/__pycache__
.dockerignore
.git*
Dockerfile
README.md
db.sqlite3
env

@ -0,0 +1,15 @@
FROM python:3.10-alpine3.15
WORKDIR /opt/shiftregister
RUN pip install --no-cache-dir gunicorn
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
RUN python manage.py collectstatic
EXPOSE 8000
ENTRYPOINT ["gunicorn", "shiftregister.wsgi"]

@ -0,0 +1,3 @@
# shiftregister
Loading…
Cancel
Save