8 lines
221 B
Plaintext
8 lines
221 B
Plaintext
FROM python:3.11-slim
|
|
WORKDIR /app
|
|
COPY requirements.txt requirements.txt
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
COPY . .
|
|
EXPOSE 8001
|
|
CMD ["gunicorn", "--bind", "0.0.0.0:8001", "StockSeeker.wsgi:application"]
|