8 lines
206 B
Docker
8 lines
206 B
Docker
FROM python:3.12-slim
|
|
RUN apt-get update && apt-get install -y libpq-dev gcc
|
|
WORKDIR /app
|
|
COPY . /app
|
|
RUN pip install -U pip && pip install -r requirements.txt
|
|
EXPOSE 8050
|
|
CMD ["python", "./indicators.py"]
|