diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..8058faa --- /dev/null +++ b/Dockerfile @@ -0,0 +1,14 @@ +FROM node:14.15.0-alpine + +#Dependencies +RUN apk add --virtual .build-deps python make g++ gcc git autoconf automake libtool file nasm pkgconf build-base + +RUN npm install -g gatsby-cli + +WORKDIR /usr/src/app + +COPY / /usr/src/app/ + +RUN npm install + +CMD [ "npm", "start" ]