/
snowflake-connector
/
Upload File
HOME
# Dockerfile # The first instruction is what image we want to base our container on # We Use an official Python runtime as a parent image FROM python:3.8 ENV PYTHONUNBUFFERED 1 # Mounts the application code to the image RUN mkdir /code WORKDIR /code # Allows docker to cache installed dependencies between builds ADD requirements.txt /code/ RUN pip install --no-cache-dir -r requirements.txt ADD . /code/