-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docker #18
docker #18
Conversation
README.md
Outdated
- config.json file in your current directory | ||
- Docker installed and running | ||
|
||
Run this command |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we add a step to pull the latest version of the tag?
.github/workflows/docker-image.yml
Outdated
context: . | ||
file: ./Dockerfile | ||
push: true | ||
tags: ${{ secrets.DOCKER_HUB_USERNAME }}/nois-bot:0.2.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's give it a fancy tag name, like
tags: ${{ secrets.DOCKER_HUB_USERNAME }}/nois-bot:0.2.0 | |
tags: ${{ secrets.DOCKER_HUB_USERNAME }}/nois-bot:nextgen |
This makes it cleaner as we push unversioned updates to that tag
Dockerfile
Outdated
@@ -0,0 +1,7 @@ | |||
# See https://hub.docker.com/r/denoland/deno/tags for available images | |||
FROM denoland/deno:alpine-1.34.3 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
FROM denoland/deno:alpine-1.34.3 | |
FROM denoland/deno:alpine-1.36.1 |
Closes #6