DAMHelper / Dockerfile
enricorampazzo's picture
Update Dockerfile
7d683f2 verified
raw
history blame
233 Bytes
FROM python:3.10
SHELL ["/bin/bash", "-c"]
RUN python -m venv venv
RUN source venv/bin/activate
RUN ls -a
COPY ./requirements.txt requirements.txt
COPY ./deps/*.whl deps
RUN pip install -r requirements.txt
ENTRYPOINT streamlit app.py