Skip to content

Instantly share code, notes, and snippets.

View portenez's full-sized avatar

Victor Garcia portenez

View GitHub Profile
FROM node:10-alpine
EXPOSE 8000
RUN apk update && \
apk add build-base && \
apk add git && \
apk add python && \
rm -rf /var/cache/apk/*
@portenez
portenez / gatsby-builder.debian.Dockerfile
Last active June 24, 2019 12:50
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/*