Skip to content

Instantly share code, notes, and snippets.

View hugorodgerbrown's full-sized avatar

Hugo Rodger-Brown hugorodgerbrown

View GitHub Profile
@hugorodgerbrown
hugorodgerbrown / Dockerfile
Created February 1, 2021 09:46 — forked from kjagiello/Dockerfile
An example Dockerfile showing how to build Facebook's watchman for your application (a life saver when running Django locally)
# Stage: watchman
# Build watchman as a separate stage in the build process, as we do not want
# all the build dependencies to end up in the final image.
FROM python:3.7 AS watchman
ARG WATCHMAN_VERSION=v4.9.0
ENV WATCHMAN_VERSION=${WATCHMAN_VERSION}
WORKDIR /tmp