-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix "Unable to locate package" error
- Loading branch information
1 parent
30f61f8
commit 9ee7e16
Showing
1 changed file
with
2 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,8 @@ LABEL maintainer="sma11black <[email protected]>" | |
COPY entrypoint.sh /entrypoint.sh | ||
COPY sync_deploy_history.js /sync_deploy_history.js | ||
|
||
RUN apt install -y git openssh-client > /dev/null ; \ | ||
RUN apt-get update && \ | ||
apt-get install -y git openssh-client > /dev/null ; \ | ||
chmod +x /entrypoint.sh | ||
|
||
ENTRYPOINT ["/entrypoint.sh"] |