mirror of
https://codeberg.org/catask-org/catask.git
synced 2025-04-19 21:33:41 -05:00
bind to 0.0.0.0:8000
in dockerfile entrypoint so that docker port exposing works properly
This commit is contained in:
parent
49b4530a2b
commit
f099958fb1
1 changed files with 1 additions and 1 deletions
|
@ -6,4 +6,4 @@ WORKDIR /catask
|
||||||
COPY . .
|
COPY . .
|
||||||
RUN pip install --no-cache-dir -r requirements.txt
|
RUN pip install --no-cache-dir -r requirements.txt
|
||||||
|
|
||||||
ENTRYPOINT [ "gunicorn", "-w", "4", "app:app" ]
|
ENTRYPOINT [ "gunicorn", "-w", "4", "app:app", "--bind", "0.0.0.0:8000" ]
|
Loading…
Add table
Reference in a new issue