Skip to content

Instantly share code, notes, and snippets.

@nsakki55
Created June 11, 2022 06:10
Show Gist options
  • Save nsakki55/218d3893ec4fe3ec6b28770db2d277a2 to your computer and use it in GitHub Desktop.
Save nsakki55/218d3893ec4fe3ec6b28770db2d277a2 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
RUN pip3 install sagemaker-training
ADD custom_toolkit_container/custom_toolkit_container_training_script.py /opt/ml/code/custom_toolkit_container_training_script.py
ADD train /opt/ml/code/train
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment