Mietanbot / Dockerfile
fathyshalaby's picture
Update Dockerfile
bf43f39
raw
history blame contribute delete
No virus
839 Bytes
# Use an official Ubuntu runtime as a base image
FROM ubuntu:latest
# Update the system and install necessary packages
RUN apt-get update && \
apt-get install -y python3 python3-pip libreoffice unoconv
# Set the working directory in the container to /app
WORKDIR /app
# Copy the current directory contents into the container at /app
COPY . /app
# Install any needed packages specified in requirements.txt
RUN pip3 install --no-cache-dir -r requirements.txt
# User
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
COPY --chown=user . $HOME/app
EXPOSE 8501
CMD streamlit run app.py \
--server.headless true \
--server.enableCORS false \
--server.enableXsrfProtection false \
--server.fileWatcherType none