diff --git a/etl/Dockerfile b/etl/Dockerfile index e0ed066..22913de 100644 --- a/etl/Dockerfile +++ b/etl/Dockerfile @@ -7,9 +7,7 @@ RUN apt-get update && apt-get install -y \ git libhdf5-dev \ && rm -rf /var/lib/apt/lists/* -WORKDIR /code -COPY . /code -#COPY ./requirements.txt /code/requirements.txt +COPY ./requirements.txt /code/requirements.txt RUN pip install --no-cache numpy==1.26.4 \ && pip install --no-cache Cython==0.29.37 \ && pip install --no-cache pandas==1.1.5 --no-build-isolation \ @@ -17,5 +15,4 @@ RUN pip install --no-cache numpy==1.26.4 \ RUN python -c 'import tensorflow_hub as hub; hub.load("https://tfhub.dev/google/universal-sentence-encoder/4")' -# Run the command to start your app -CMD ["python", "run.py"] +WORKDIR /code