Initial commit
continuous-integration/drone Build is passing

This commit is contained in:
2022-04-06 10:46:44 +02:00
commit 2fd4e104b8
18 changed files with 1553 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
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