Skip to content

Commit

Permalink
KubeDev#1 --start Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
rsgamboa committed Jan 13, 2025
1 parent f379c58 commit a324a6d
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
FROM python
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . /app/
EXPOSE 5000
CMD ["gunicorne", "--bind", "0.0.0.0:5000", "app:app"]

0 comments on commit a324a6d

Please sign in to comment.