This commit is contained in:
2023-05-03 16:52:19 -04:00
parent 6b39d138de
commit 96c7061ace
2 changed files with 3 additions and 1 deletions

View File

@@ -114,7 +114,7 @@ steps:
- up -d - up -d
volumes: volumes:
- name: env - name: env
path: /.env path: ./.env
- name: Send Status Notifications - name: Send Status Notifications
image: plugins/webhook image: plugins/webhook

View File

@@ -1,3 +1,5 @@
FROM node FROM node
WORKDIR / WORKDIR /
COPY . .
RUN yarn build
CMD ["node", "dist/lib/server/index.js"] CMD ["node", "dist/lib/server/index.js"]