Skip to content
This repository has been archived by the owner on Sep 4, 2024. It is now read-only.

Commit

Permalink
add curl to images (#140)
Browse files Browse the repository at this point in the history
<!-- < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < ☺
v                               ✰  Thanks for creating a PR! ✰
v    Before smashing the submit button please review the checkboxes.
v If a checkbox is n/a - please still include it but + a little note why
v If your PR doesn't close an issue, that's OK! Just remove the Closes:
#XXX line!
☺ > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > >  -->

Closes: #XXX

## What is the purpose of the change

> Add a description of the overall background and high level changes
that this PR introduces

*(E.g.: This pull request improves documentation of area A by adding
....)*

## Testing and Verifying

*(Please pick one of the following options)*

This change is a trivial rework / code cleanup without any test
coverage.

*(or)*

This change is already covered by existing tests, such as *(please
describe tests)*.

*(or)*

This change added tests and can be verified as follows:

*(example:)*
  - *Added unit test that validates ...*
  - *Added integration tests for end-to-end deployment with ...*
  - *Extended integration test for ...*
  - *Manually verified the change by ...*

## Documentation and Release Note

- [ ] Does this pull request introduce a new feature or user-facing
behavior changes?


Where is the change documented?
  - [ ] Specification (`x/{module}/README.md`)
- [ ] Allora documentation site `docs.allora.network` source code at:
`https://github.com/allora-network/docs`
  - [ ] Code comments?
  - [ ] N/A
  • Loading branch information
vladupshot authored Jul 16, 2024
1 parent 4b664eb commit a8a3cef
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion docker/Dockerfile_head
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ RUN apt update && \
apt -y dist-upgrade && \
apt install -y --no-install-recommends \
tzdata \
ca-certificates && \
ca-certificates \
curl && \
echo "deb http://deb.debian.org/debian testing main" >> /etc/apt/sources.list && \
apt update && \
apt install -y --no-install-recommends -t testing \
Expand Down
3 changes: 2 additions & 1 deletion docker/Dockerfile_worker
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ RUN apt update && \
tzdata \
ca-certificates \
libssl-dev \
gh && \
gh \
curl && \
echo "deb http://deb.debian.org/debian testing main" >> /etc/apt/sources.list && \
apt update && \
apt install -y --no-install-recommends -t testing \
Expand Down
3 changes: 2 additions & 1 deletion docker/Dockerfile_worker_py3.9
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ RUN apt update && \
tzdata \
ca-certificates \
libssl-dev \
gh && \
gh \
curl && \
echo "deb http://deb.debian.org/debian testing main" >> /etc/apt/sources.list && \
apt update && \
apt install -y --no-install-recommends -t testing \
Expand Down

0 comments on commit a8a3cef

Please sign in to comment.