Skip to content

Commit

Permalink
Docker updates
Browse files Browse the repository at this point in the history
  • Loading branch information
andymeneely committed Oct 26, 2021
1 parent 25f9932 commit 733b988
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
14 changes: 13 additions & 1 deletion .github/ISSUE_TEMPLATE/release-todo.md
Expand Up @@ -28,7 +28,19 @@ Be sure to remember to do the following for releases.
- [ ] Set default version on squib.readthedocs.org (Advanced Settings)
- [ ] Bump version.rb to the next alpha
- [ ] Publish on BoardGameGeek thread
- [ ] Anything else to add to this checklist?

# Docker
- [ ] Check Dockerfile for updates
- [ ] `docker build .`
- [ ] `docker tag XYZ andymeneely/squib:latest`
- [ ] `docker tag XYZ andymeneely/squib:version-0.XYZ.0`
- [ ] `docker push andymeneely/squib:latest`
- [ ] `docker push andymeneely/squib:version-0.XYZ.0`
- [ ] Check Docker build on Dockerhub: https://hub.docker.com/repository/docker/andymeneely/squib
- [ ] Check Docker docker pull: docker pull andymeneely/squib:latest
- [ ] Check Docker build locally in samples: docker run --rm -v "%cd%":/usr/src/app andymeneely/squib:latest ruby basic
- [ ] Check Docker build locally in samples:
* Delete `samples/_output/basic_*.png`
* `docker run --rm -v c:\code\squib\samples:/usr/src/app -w /usr/src/app andymeneely/squib:latest ruby basic.rb`
* Check that the files were made
- [ ] Anything else to add to this checklist?
2 changes: 1 addition & 1 deletion Dockerfile
@@ -1,6 +1,6 @@
# This is the official Squib Docker image.
#
FROM ruby:2.7-slim
FROM ruby:3.0-slim
WORKDIR /usr/src/app

LABEL org.squib.url=http://squib.rocks \
Expand Down

0 comments on commit 733b988

Please sign in to comment.