Skip to content

Commit

Permalink
Merge pull request #1260 from Avaiga/feature/update-dev-Dockerfile-to…
Browse files Browse the repository at this point in the history
…-optimize-caching

Fix - Update dev Dockerfile example to optimize caching
  • Loading branch information
trgiangdo authored Jan 17, 2025
2 parents 3b2965c + 8f9ce6d commit 74b2a10
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docs/userman/run-deploy/deploy/docker/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,11 @@ EXPOSE 5000
# Install your application
WORKDIR /app
COPY . /app
COPY requirements.txt /app/
RUN pip install -r requirements.txt
COPY . /app
# Start up command
CMD python main.py -P 5000 -H 0.0.0.0 --debug
```
Expand Down

0 comments on commit 74b2a10

Please sign in to comment.