volcano-plot / Dockerfile
Romain Graux
V0 of the app with streamlit
0a7969d
raw
history blame
333 Bytes
FROM python:3.11
RUN useradd -m -u 1000 user
WORKDIR /app
COPY --chown=user ./requirements.txt requirements.txt
RUN pip install --no-cache-dir --upgrade -r requirements.txt
COPY --chown=user ./spock /app/spock
RUN pip install --no-cache-dir --upgrade -e /app/spock
COPY --chown=user . /app
CMD ["streamlit", "run", "/app/app.py"]