Bugfixes for emails and bugfixes for trade acceptance quantities being checked on create, closes #1
This commit is contained in:
parent
32da8157a6
commit
bd7a65975f
21 changed files with 95 additions and 86 deletions
|
|
@ -2,7 +2,6 @@
|
|||
FROM python:3.12.2-bookworm
|
||||
|
||||
# Set environment variables
|
||||
ENV PYTHONDONTWRITEBYTECODE 1
|
||||
ENV PYTHONUNBUFFERED 1
|
||||
|
||||
# Create and set work directory called `app`
|
||||
|
|
@ -22,16 +21,14 @@ COPY . /code/
|
|||
COPY .env.production /code/.env
|
||||
ENV HOME=/code
|
||||
|
||||
# Install NPM & node.js
|
||||
RUN apt-get update && apt-get install -y nodejs npm xvfb netcat-openbsd
|
||||
|
||||
# Install playwright (via pip and install script)
|
||||
RUN playwright install-deps && playwright install
|
||||
|
||||
# Expose port 8000
|
||||
EXPOSE 8000
|
||||
|
||||
#USER 10003:10003
|
||||
|
||||
RUN python manage.py collectstatic --noinput
|
||||
|
||||
#RUN python manage.py loaddata seed/* && python manage.py createcachetable django_cache
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue