Added docker files for remote
This commit is contained in:
11
Dockerfile
Normal file
11
Dockerfile
Normal file
@@ -0,0 +1,11 @@
|
||||
# Use a full Python runtime image to ensure necessary build tools are available.
|
||||
FROM python
|
||||
|
||||
# Set the working directory to organize application files.
|
||||
WORKDIR /app
|
||||
|
||||
# Copy requirements file to allow pip to find dependencies during build.
|
||||
COPY requirements.txt /app/
|
||||
|
||||
# Install Python dependencies for the application to run correctly.
|
||||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
Reference in New Issue
Block a user