Skip to content

Commit

Permalink
chore: Tidy up Docker tests
Browse files Browse the repository at this point in the history
  • Loading branch information
twpayne committed Nov 28, 2021
1 parent 72c478e commit f9ba484
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 7 deletions.
1 change: 1 addition & 0 deletions assets/docker/archlinux.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
FROM archlinux:latest

RUN pacman -Sy --noconfirm --noprogressbar age gcc git go unzip zip

ENTRYPOINT ( cd /chezmoi && go test ./... )
4 changes: 2 additions & 2 deletions assets/docker/fedora.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ FROM fedora:latest

RUN dnf update -y && \
dnf install -y bzip2 git gnupg golang
COPY assets/docker/fedora.entrypoint.sh /entrypoint.sh
ENTRYPOINT /entrypoint.sh

ENTRYPOINT ( cd /chezmoi && go test ./... )
5 changes: 0 additions & 5 deletions assets/docker/fedora.entrypoint.sh

This file was deleted.

1 change: 1 addition & 0 deletions assets/docker/voidlinux.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ FROM voidlinux/voidlinux:latest
RUN \
xbps-install --sync --update --yes && \
xbps-install --yes age gcc git go unzip zip

ENTRYPOINT ( cd /chezmoi && go test ./... )

0 comments on commit f9ba484

Please sign in to comment.