grouped-sampling-demo / Dockerfile
yonikremer's picture
Fixed typo
10ffef0
raw
history blame
332 Bytes
FROM bitnami/pytorch
WORKDIR /app
COPY ./requirements.txt /app/requirements.txt
RUN pip install --no-cache-dir -r /app/requirements.txt
RUN useradd -m -u 1000 user
USER user
ENV HOME /home/user
ENV PATH $HOME/.local/bin:$PATH
WORKDIR $HOME
RUN mkdir app
WORKDIR $HOME/app
COPY . $HOME/app
EXPOSE 7860
CMD streamlit run app.py