mirror of
https://github.com/zedeus/nitter
synced 2026-09-05 22:59:31 +00:00
4 lines
161 B
Shell
Executable file
4 lines
161 B
Shell
Executable file
#!/bin/sh
|
|
docker build -t $IMAGE_NAME . \
|
|
&& echo $DOCKERHUB_PASSWORD | docker login -u $DOCKERHUB_USERNAME --password-stdin \
|
|
&& docker push $IMAGE_NAME:latest
|