Skip to content

Commit

Permalink
Gitpod image correction
Browse files Browse the repository at this point in the history
  • Loading branch information
AstraBert committed Jul 28, 2024
1 parent 22fd841 commit c65964a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
image: astrabert/searchphi:latest
image: astrabert/searchphi:gitpod

ports:
- name: streamlit
Expand All @@ -7,5 +7,4 @@ ports:

tasks:
- init: |
apt update && apt install git
- command: streamlit run app.py
streamlit run app.py
8 changes: 8 additions & 0 deletions Dockerfile.gitpod
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM astrabert/searchphi:latest

RUN apt update && apt install -y git

EXPOSE 8501

ENTRYPOINT [ "streamlit", "run" ]
CMD [ "app.py" ]

0 comments on commit c65964a

Please sign in to comment.