feat: add workflows

This commit is contained in:
Rogee
2024-12-15 10:02:52 +08:00
parent 77a3bd6af8
commit 0008831b24
5 changed files with 92 additions and 1 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM docker.hub.ipao.vip/alpine:3.20
COPY backend/build/app /app/qvyun
COPY backend/config.prod.toml /app/config.toml
COPY frontend/dist /app/dist
WORKDIR /app
ENTRYPOINT ["/app/qvyun"]
CMD [ "serve" ]