Skip to content

Instantly share code, notes, and snippets.

View 771991673's full-sized avatar
💭
I may be slow to respond.

James Lau 771991673

💭
I may be slow to respond.
View GitHub Profile
@771991673
771991673 / .dockerignore
Last active August 11, 2019 11:05
My Standard docker files
.git
.ipynb_checkpoints/*
/notebooks/*
/unused/*
Dockerfile
.DS_Store
.gitignore
README.md
env.*
/devops/*
@771991673
771991673 / Dockerfile
Created July 21, 2019 11:08
Python VirtualEnv Dockerfile
FROM python:3.7.4-buster
ADD . /app
WORKDIR /app
RUN python -m venv venv
RUN venv/bin/pip install --upgrade pip
RUN venv/bin/pip install -r requirements.txt