2 Commits

Author SHA1 Message Date
0a7bbb96c0 Why not?
Some checks failed
continuous-integration/drone/push Build encountered an error
2023-05-03 17:05:53 -04:00
96c7061ace try this 2023-05-03 16:52:19 -04:00
2 changed files with 6 additions and 4 deletions

View File

@@ -108,13 +108,13 @@ steps:
- cp -r /drone/grow/* .
- yarn build
- name: Deploy Container
image: compose
image: docker
commands:
- build .
- up -d
- compose build .
- compose up -d
volumes:
- name: env
path: /.env
path: ./.env
- name: Send Status Notifications
image: plugins/webhook

View File

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