MoinRomanticbot / Dockerfile
syedmoinms's picture
Update Dockerfile
5109c6f verified
raw
history blame contribute delete
309 Bytes
# Use Official Python Image
FROM python:3.10
# Set Working Directory
WORKDIR /app
# Copy Files
COPY requirements.txt /app/requirements.txt
COPY app.py /app/app.py
COPY config.json /app/config.json
# Install Dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Run App
CMD ["python", "app.py"]