16 lines
283 B
Text
16 lines
283 B
Text
|
FROM python:3.8-slim
|
||
|
|
||
|
# Set the working directory
|
||
|
WORKDIR /app
|
||
|
|
||
|
# Copy the requirements file
|
||
|
COPY requirements.txt .
|
||
|
|
||
|
# Install any needed packages
|
||
|
RUN pip install -r requirements.txt
|
||
|
|
||
|
# Copy the application code into the container
|
||
|
COPY setup.py setup.py
|
||
|
|
||
|
CMD ["python", "setup.py"]
|