-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move Docker image to new repo, use dev-only image
In #34, development tools were added to the clitest Docker image, making it both an end user image and a development environment. This was a bad idea. This commit separates them in two different images. - The public clitest image was moved to a new repository: https://github.com/aureliojargas/clitest-docker. Now everything is automated and releasing a new clitest image to Docker Hub is just a matter of adding a git tag to that repository. Everything related to that image was removed from this repository. - The local development image remains here, named `clitest-dev` and described in the new `Dockerfile.dev` file. It does not have clitest inside it, it's just the development environment. When running the image, the current clitest code should be mounted inside it. In short, everything dev-related is here. After releasing a new clitest version (here), go to the other repository to make the official Docker image for it.
- Loading branch information
1 parent
2cb00b3
commit 1d58862
Showing
5 changed files
with
38 additions
and
144 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# clitest-dev | ||
# Local Docker image used for clitest development. | ||
# | ||
# It has all the required tools for linting and testing clitest code. | ||
# See Makefile for commands to build and run this image. | ||
# | ||
# If you're searching for the official clitest Docker image (for users): | ||
# https://hub.docker.com/r/aureliojargas/clitest | ||
|
||
FROM alpine:3.11 | ||
|
||
# Perl is required by clitest's --regex matching mode | ||
RUN apk --no-cache add \ | ||
bash dash mksh zsh \ | ||
perl \ | ||
make \ | ||
checkbashisms shellcheck | ||
|
||
WORKDIR /mnt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters