Skip to content

Instantly share code, notes, and snippets.

@MikSDigital
Created September 1, 2019 16:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MikSDigital/c7be8afcf41b9afd9cc1928eb4b5ec96 to your computer and use it in GitHub Desktop.
Save MikSDigital/c7be8afcf41b9afd9cc1928eb4b5ec96 to your computer and use it in GitHub Desktop.
Dockerfile for gatsby.js development
FROM node:10-alpine
RUN apk update && \
apk add --update --repository http://dl-3.alpinelinux.org/alpine/edge/community vips-tools vips-dev fftw-dev gcc g++ make libc6-compat && \
apk add git && \
apk add python && \
rm -rf /var/cache/apk/*
#RUN git config --global url."https://github.com/".insteadOf "git@github.com:"
RUN git config --global user.email "you@example.com"
RUN git config --global user.name "Your Name"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment