From 3d51a9778796514f6baa1a15a112326b3b674cdc Mon Sep 17 00:00:00 2001 From: Kye Gomez Date: Thu, 16 Jan 2025 00:29:34 -0500 Subject: [PATCH] [EXAMPLES] --- Dockerfile | 25 ------------------- .../coin_market_cap.py | 0 coingecko_api.py => examples/coingecko_api.py | 0 eodh_example.py => examples/eodh_example.py | 0 4 files changed, 25 deletions(-) delete mode 100644 Dockerfile rename coin_market_cap.py => examples/coin_market_cap.py (100%) rename coingecko_api.py => examples/coingecko_api.py (100%) rename eodh_example.py => examples/eodh_example.py (100%) diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 3205029..0000000 --- a/Dockerfile +++ /dev/null @@ -1,25 +0,0 @@ -# ================================== -# Use an official Python runtime as a parent image -FROM python:3.10-slim -RUN apt-get update && apt-get -y install libgl1-mesa-dev libglib2.0-0 build-essential; apt-get clean -RUN pip install opencv-contrib-python-headless - -# Set environment variables -ENV PYTHONDONTWRITEBYTECODE 1 -ENV PYTHONUNBUFFERED 1 - -# Set the working directory in the container -WORKDIR /usr/src/zeta - - -# Install Python dependencies -# COPY requirements.txt and pyproject.toml if you're using poetry for dependency management -COPY requirements.txt . -RUN pip install --no-cache-dir --upgrade pip -RUN pip install --no-cache-dir -r requirements.txt - -RUN pip install --no-cache-dir zetascale - -# Copy the rest of the application -COPY . . - diff --git a/coin_market_cap.py b/examples/coin_market_cap.py similarity index 100% rename from coin_market_cap.py rename to examples/coin_market_cap.py diff --git a/coingecko_api.py b/examples/coingecko_api.py similarity index 100% rename from coingecko_api.py rename to examples/coingecko_api.py diff --git a/eodh_example.py b/examples/eodh_example.py similarity index 100% rename from eodh_example.py rename to examples/eodh_example.py