Add docker support

This commit is contained in:
yoan
2024-08-27 23:25:20 +08:00
parent 0fac606d67
commit 76e6b9f20c
2 changed files with 9 additions and 1 deletions

View File

@@ -1,3 +1,11 @@
FROM node:20-alpine
WORKDIR /app
COPY ../. /app/
RUN npm --prefix=./ui ci && npm --prefix=./ui run build
FROM golang:1.22-alpine
WORKDIR /app