feature: add Dockerfile & docker-compose installation instructions

This commit is contained in:
Jordan Knott
2020-07-18 17:28:25 -05:00
parent de03fd9ef7
commit 66a2931ab8
8 changed files with 124 additions and 19 deletions

18
Dockerfile Normal file
View File

@ -0,0 +1,18 @@
FROM node:14.5-alpine as frontend
RUN apk --no-cache add curl
WORKDIR /usr/src/app
COPY frontend .
RUN yarn install
RUN yarn build
FROM golang:1.14.5-alpine as backend
WORKDIR /usr/src/app
COPY . .
COPY --from=frontend /usr/src/app/build .
RUN go run cmd/mage/main.go backend:genFrontend backend:build
FROM alpine:latest
WORKDIR /root/
COPY --from=backend /usr/src/app/dist/citadel .
COPY --from=backend /usr/src/app/conf/app.example.toml conf/app.toml
CMD ["./citadel", "web"]