packer/Dockerfile: use absolute paths
This commit is contained in:
parent
798c634aa6
commit
2932f593a0
|
@ -6,10 +6,10 @@ RUN apt-get update && apt-get -y install git curl sudo xz-utils
|
||||||
RUN git clone https://git.wntrmute.dev/kyle/bladerunner
|
RUN git clone https://git.wntrmute.dev/kyle/bladerunner
|
||||||
RUN bladerunner/tools/install-go.sh
|
RUN bladerunner/tools/install-go.sh
|
||||||
|
|
||||||
ADD . packer
|
ADD . /packer
|
||||||
WORKDIR packer
|
WORKDIR /packer
|
||||||
VOLUME build
|
VOLUME build
|
||||||
RUN ./install-packer.sh
|
RUN ./install-packer.sh
|
||||||
WORKDIR build/packer-builder-arm
|
WORKDIR /packer/build/packer-builder-arm
|
||||||
|
|
||||||
ENTRYPOINT ["/usr/bin/env", "bash"]
|
ENTRYPOINT ["/usr/bin/env", "bash"]
|
||||||
|
|
Loading…
Reference in New Issue