FROM coinstac/coinstac-base

# Set the working directory to /app
WORKDIR /computation

# Copy the current directory contents into the container at /app
ADD . /computation

# Install any needed packages specified in requirements.txt
# RUN pip install -r requirements.txt
