This repository has been archived on 2022-09-04. You can view files and clone it, but cannot push or open issues or pull requests.
tribalwarshelp.com/Dockerfile

18 lines
356 B
Docker

FROM node:14.1.0-alpine as build-deps
ENV NODE_ENV=production
RUN npm install --global gatsby-cli
WORKDIR /usr/src/app
COPY package.json yarn.lock ./
RUN yarn
COPY . ./
RUN yarn build
#Stage 2
FROM nginx:1.17.5-alpine
COPY --from=build-deps /usr/src/app/public /var/www
COPY nginx.conf /etc/nginx/nginx.conf
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]