Add Docker

This commit is contained in:
2022-12-18 13:43:09 +13:00
parent 0f2fb551fb
commit 582a7df49f
2 changed files with 73 additions and 0 deletions

22
Dockerfile Normal file
View File

@@ -0,0 +1,22 @@
FROM golang:1.19 as go
COPY ./api /api
WORKDIR /api
RUN go build -o /api/main /api/*.go
FROM node as node
COPY ./app /app
WORKDIR /app
ENV NODE_ENV=production
RUN npm install
RUN npm install && npm run build
FROM debian
COPY --from=go /api/main /main
COPY --from=node /app/www /api/www
EXPOSE 8080
CMD [ "/main" ]