Skip to content

Commit

Permalink
Task/add util image (#102)
Browse files Browse the repository at this point in the history
* Add Dockerfile for util

* Use debian for util image
  • Loading branch information
nathanfranklin authored Aug 31, 2022
1 parent f33d85a commit a54c97d
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
7 changes: 7 additions & 0 deletions kube/utils/geoapi-util-image/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
FROM debian:bullseye
RUN apt-get update && apt-get install -y \
bash \
rsync \
ssh \
python3 \
vim
12 changes: 12 additions & 0 deletions kube/utils/geoapi-util-image/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Geoapi utility image

Docker [image](https://hub.docker.com/r/taccaci/geoapi-util) for utility work on staging/deployment environments of geoapi

This is used for such things as troubleshooting and nightly backups

```
docker build -t taccaci/geoapi-util .
docker push taccaci/geoapi-util:latest
```

```docker run --rm -it taccaci/geoapi-util bash```

0 comments on commit a54c97d

Please sign in to comment.