Skip to content
Merged
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
6 changes: 3 additions & 3 deletions .dockerfiles/nightly/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ RUN apk add --update --no-cache \
git

RUN sh -c "$(curl --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/ponylang/ponyup/latest-release/ponyup-init.sh)" \
&& ponyup update ponyc nightly \
&& ponyup update corral nightly \
&& ponyup update changelog-tool nightly
&& ponyup --api-timeout 30 update ponyc nightly --retries 3 \
&& ponyup --api-timeout 30 update corral nightly --retries 3 \
&& ponyup --api-timeout 30 update changelog-tool nightly --retries 3

WORKDIR /src/main

Expand Down
6 changes: 3 additions & 3 deletions .dockerfiles/release/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ RUN apk add --update --no-cache \
git

RUN sh -c "$(curl --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/ponylang/ponyup/latest-release/ponyup-init.sh)" \
&& ponyup update ponyc release \
&& ponyup update corral release \
&& ponyup update changelog-tool release
&& ponyup --api-timeout 30 update ponyc release --retries 3 \
&& ponyup --api-timeout 30 update corral release --retries 3 \
&& ponyup --api-timeout 30 update changelog-tool release --retries 3

WORKDIR /src/main

Expand Down
Loading