Skip to content

Instantly share code, notes, and snippets.

@mhobesong
mhobesong / Dockerfile
Last active April 4, 2020 22:25 — forked from peterj/Dockerfile
React app Dockerfile
FROM mhart/alpine-node:11 AS builder
WORKDIR /app
COPY . .
RUN yarn install
RUN yarn run build
FROM mhart/alpine-node
RUN yarn global add serve
WORKDIR /app
COPY --from=builder /app/build .