reverted to old web configuration on main branch
This commit is contained in:
19
dockerfile
Normal file
19
dockerfile
Normal file
@@ -0,0 +1,19 @@
|
||||
# Use the official Python image from the Docker Hub
|
||||
FROM python:3
|
||||
|
||||
# Set environment variables
|
||||
ENV PYTHONDONTWRITEBYTECODE 1
|
||||
ENV PYTHONUNBUFFERED 1
|
||||
|
||||
# Set the working directory
|
||||
WORKDIR /code
|
||||
|
||||
# Copy the requirements file and install dependencies
|
||||
COPY requirements.txt .
|
||||
|
||||
RUN pip install -r requirements.txt
|
||||
|
||||
|
||||
|
||||
# Copy the project files
|
||||
COPY . .
|
||||
Reference in New Issue
Block a user