Explicit testing repo

This commit is contained in:
Khue Doan 2021-03-11 10:21:27 +07:00
parent 9f78e65ecd
commit 6a10e55110
2 changed files with 7 additions and 7 deletions

View File

@ -1,17 +1,17 @@
FROM alpine FROM alpine
RUN echo "http://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories && apk update RUN apk add --no-cache \
RUN apk add \
curl \ curl \
docker-cli \ docker-cli \
helm \
kubectl \
make \ make \
neovim \ neovim \
python3 \ python3 \
terraform \
tree \ tree \
zsh zsh
RUN apk add --no-cache --repository "http://dl-cdn.alpinelinux.org/alpine/edge/testing" \
helm \
kubectl \
terraform
WORKDIR /root/src WORKDIR /root/src

View File

@ -3,7 +3,7 @@
default: build run default: build run
build: build:
docker-compose build docker-compose build --quiet
run: run:
docker-compose run --rm tools zsh docker-compose run --rm tools zsh