Add docker setup to CI/CD pipeline

This commit is contained in:
Tanguy Herbron 2021-09-07 21:52:56 +02:00
parent d18f1d65c8
commit 1e1fb642a0
2 changed files with 2 additions and 2 deletions

View File

@ -10,6 +10,8 @@ steps:
- name: deployment
image: alpine
commands:
- echo "Setting up internal docker cli"
- apk update && apk add docker docker-compose
- echo "Build the container image"
- docker-compose build
- echo "Restart the container"

View File

@ -28,5 +28,3 @@ You can check out [the Next.js GitHub repository](https://github.com/vercel/next
The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/import?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.
Trigger CI