# syntax=docker/dockerfile:1

    FROM pytorch/pytorch
    RUN apt-get update && apt-get install -y git screen build-essential


    WORKDIR /app
    SHELL ["/bin/bash", "--login", "-c"]
    
    CMD ["/bin/bash"]