Initial POC
This commit is contained in:
parent
8dce31d0ad
commit
334ec7175e
12 changed files with 237 additions and 119 deletions
11
Dockerfile
Normal file
11
Dockerfile
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue