Skip to content

Instantly share code, notes, and snippets.

@nsakki55
Created June 11, 2022 06:23
Show Gist options
  • Save nsakki55/082eeba3782b1a5da3690f914f88c0f4 to your computer and use it in GitHub Desktop.
Save nsakki55/082eeba3782b1a5da3690f914f88c0f4 to your computer and use it in GitHub Desktop.
FROM python:3.6-slim-buster
RUN apt-get update \
&& apt-get install -y --no-install-recommends gcc g++
RUN pip3 install pandas numpy joblib scikit-learn cython
RUN pip3 install fastFM
ADD scratch_container/scratch_container_training_script.py scratch_container_training_script.py
WORKDIR /
ENTRYPOINT ["python", "scratch_container_training_script.py"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment