openenv-meta / Dockerfile
mathi3046's picture
Initial commit
fb78c46
raw
history blame contribute delete
322 Bytes
# Stable base image (avoids Docker Hub auth issues)
FROM python:3.9-slim-buster
# Set working directory
WORKDIR /app
# Copy all files
COPY . .
# Upgrade pip
RUN pip install --no-cache-dir --upgrade pip
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Run start script
CMD ["bash", "run.sh"]