Skip to content
Snippets Groups Projects
Dockerfile 152 B
Newer Older
FROM node:15-alpine AS builder

WORKDIR /app
COPY . /app
RUN yarn && npx grunt

FROM nginx:alpine

COPY --from=builder /app/build /usr/share/nginx/html