Speed_Read_AI / Dockerfile
circulartext's picture
Create Dockerfile
2cf44c4
raw
history blame
1.08 kB
# Use the base Docker image
FROM circulartextapp/spaceread
# Set the working directory to /app
WORKDIR /app
# Copy the current directory contents into the container at /app
COPY . /app
# Set up a new user named "user" dynamically
RUN if id "user" >/dev/null 2>&1; then \
echo "User 'user' already exists."; \
else \
useradd -m user; \
fi
# Set appropriate permissions for the application directory
RUN chown -R user:user /app && chmod -R 755 /app
# Install gosu (adjust the package manager based on your base image)
RUN apt-get update && apt-get install -y gosu && rm -rf /var/lib/apt/lists/*
# Set the entrypoint script as executable
COPY entrypoint.sh /usr/local/bin/entrypoint.sh
RUN chmod +x /usr/local/bin/entrypoint.sh
# Switch to the user for improved security
USER user
# Define the entrypoint script to handle user creation and application startup
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]
# Default command to run if the user doesn't provide a command
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860", "--reload"]