enricorampazzo commited on
Commit
af72954
·
verified ·
1 Parent(s): 1f51a3e

Update Dockerfile

Browse files

removed offending command 'source', must be a sh quirk

Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -1,5 +1,5 @@
1
  FROM python:3.10
2
  RUN python -m venv venv
3
- RUN source venv/bin/activate
4
  RUN pip install -r requirements.txt
5
  ENTRYPOINT streamlit app.py
 
1
  FROM python:3.10
2
  RUN python -m venv venv
3
+ RUN venv/bin/activate
4
  RUN pip install -r requirements.txt
5
  ENTRYPOINT streamlit app.py