Initial POC

This commit is contained in:
Alex 2024-01-06 17:04:16 -05:00
parent 8dce31d0ad
commit 334ec7175e
12 changed files with 237 additions and 119 deletions

11
Dockerfile Normal file
View file

@ -0,0 +1,11 @@
FROM node:16 as builder
WORKDIR /build
COPY ./ /build/
RUN npm run build
FROM nginx:alpine
LABEL org.opencontainers.image.authors="@phoenix_fairy@thetransagenda.gay"
COPY --from=builder /build/dist /usr/share/nginx/html
COPY nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80