mirror of
https://github.com/mentos1386/dotfiles.git
synced 2025-01-31 00:35:42 +00:00
fix(packages:mosh): wrong context
This commit is contained in:
parent
2223baa5b7
commit
cb1cbff8da
2 changed files with 5 additions and 5 deletions
8
Makefile
8
Makefile
|
@ -6,16 +6,16 @@ build:
|
||||||
@docker buildx build --load -t ${REGISTRY}/workspace:edge -f Dockerfile .
|
@docker buildx build --load -t ${REGISTRY}/workspace:edge -f Dockerfile .
|
||||||
|
|
||||||
build-package-starship:
|
build-package-starship:
|
||||||
@docker buildx build --load -t ${REGISTRY}/starship:0.47.0 -f packages/Dockerfile.starship packages/
|
@docker buildx build --load -t ${REGISTRY}/starship:0.47.0 -f packages/Dockerfile.starship .
|
||||||
|
|
||||||
build-package-kubectl:
|
build-package-kubectl:
|
||||||
@docker buildx build --load -t ${REGISTRY}/kubectl:1.20.0 -f packages/Dockerfile.kubectl packages/
|
@docker buildx build --load -t ${REGISTRY}/kubectl:1.20.0 -f packages/Dockerfile.kubectl .
|
||||||
|
|
||||||
build-package-glow:
|
build-package-glow:
|
||||||
@docker buildx build --load -t ${REGISTRY}/glow:1.3.0 -f packages/Dockerfile.glow packages/
|
@docker buildx build --load -t ${REGISTRY}/glow:1.3.0 -f packages/Dockerfile.glow .
|
||||||
|
|
||||||
build-package-mosh:
|
build-package-mosh:
|
||||||
@docker buildx build --progress ${PROGRESS} --load -t ${REGISTRY}/mosh:master -f packages/Dockerfile.mosh packages/
|
@docker buildx build --progress ${PROGRESS} --load -t ${REGISTRY}/mosh:master -f packages/Dockerfile.mosh .
|
||||||
|
|
||||||
build-packages: package-kubectl package-starship
|
build-packages: package-kubectl package-starship
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@ FROM sgerrand/alpine-abuild:3.12 as build
|
||||||
LABEL maintainer="Tine <mentos1386> Jozelj <tine@tjo.space>"
|
LABEL maintainer="Tine <mentos1386> Jozelj <tine@tjo.space>"
|
||||||
LABEL org.opencontainers.image.source https://github.com/mentos1386/workspace
|
LABEL org.opencontainers.image.source https://github.com/mentos1386/workspace
|
||||||
|
|
||||||
COPY --chown=builder mosh /home/builder/package
|
COPY --chown=builder packages/mosh /home/builder/package
|
||||||
RUN sudo chown builder -R /home/builder/package
|
RUN sudo chown builder -R /home/builder/package
|
||||||
|
|
||||||
ARG VERSION=master
|
ARG VERSION=master
|
||||||
|
|
Loading…
Reference in a new issue