Skip to content
This repository has been archived by the owner on Mar 15, 2022. It is now read-only.

Change ENTRYPOINT to CMD for Packer #76

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packer/Dockerfile-full
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ WORKDIR $GOPATH/src/github.com/hashicorp/packer
RUN /bin/bash scripts/build.sh

WORKDIR $GOPATH
ENTRYPOINT ["bin/packer"]
CMD ["bin/packer"]
2 changes: 1 addition & 1 deletion packer/Dockerfile-light
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ RUN sha256sum -cs packer_${PACKER_VERSION}_SHA256SUMS
RUN unzip packer_${PACKER_VERSION}_linux_amd64.zip -d /bin
RUN rm -f packer_${PACKER_VERSION}_linux_amd64.zip

ENTRYPOINT ["/bin/packer"]
CMD ["/bin/packer"]