pf2e-cards/Dockerfile
Michal Kunc 2fd4e104b8
All checks were successful
continuous-integration/drone Build is passing
Initial commit
2022-04-06 10:46:44 +02:00

12 lines
180 B
Docker

FROM node AS build
ARG CAPROVER_GIT_COMMIT_SHA=""
WORKDIR /app
COPY . /app
RUN npm install && \
npm run build
FROM nginx
COPY --from=build /app/public /usr/share/nginx/html