Created
September 1, 2019 16:33
-
-
Save MikSDigital/c7be8afcf41b9afd9cc1928eb4b5ec96 to your computer and use it in GitHub Desktop.
Dockerfile for gatsby.js development
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 "[email protected]:" | |
RUN git config --global user.email "[email protected]" | |
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