Skip to content

Instantly share code, notes, and snippets.

@portenez
Last active June 24, 2019 12:50
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 portenez/f913568a41157c6da4c6b915d3b63f46 to your computer and use it in GitHub Desktop.
Save portenez/f913568a41157c6da4c6b915d3b63f46 to your computer and use it in GitHub Desktop.
Gatsby builder debian
FROM node:11.4-stretch
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update \
&& apt-get install -y \
build-essential \
python \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
ENV DEBIAN_FRONTEND teletype
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment