Skip to content
This repository has been archived by the owner on Mar 16, 2024. It is now read-only.

Commit

Permalink
Merge pull request #623 from eengelking/docs/getting-started-dockerfi…
Browse files Browse the repository at this point in the history
…le-08252022

Improve container build time in Getting Started document.
  • Loading branch information
cjellick committed Aug 26, 2022
2 parents 6381f7b + 011ce55 commit 8699e49
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/docs/37-getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,9 @@ WORKDIR /app
ENV FLASK_APP=app.py
ENV FLASK_RUN_HOST=0.0.0.0
RUN apk add --no-cache gcc musl-dev linux-headers
COPY . .
ADD requirements.txt .
RUN pip install -r requirements.txt
COPY . .
EXPOSE 5000
CMD ["flask", "run"]
```
Expand Down

0 comments on commit 8699e49

Please sign in to comment.