Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ COPY codenames /app/codenames
COPY tools /app/tools
COPY requirements.txt /app/requirements.txt

RUN pip install --no-cache-dir --upgrade --root-user-action pip gunicorn eventlet
RUN pip install --no-cache-dir --upgrade --root-user-action -r /app/requirements.txt \
RUN pip install --no-cache-dir --upgrade pip gunicorn eventlet
RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt \
&& rm -f /app/requirements.txt

RUN python tools/words_to_image.py
Expand Down