-
Notifications
You must be signed in to change notification settings - Fork 845
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2946 from chaoss/main
Merge Patches back to Dev
- Loading branch information
Showing
6 changed files
with
14 additions
and
10 deletions.
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
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
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
FROM python:3.11-slim-bullseye | ||
|
||
LABEL maintainer="[email protected]" | ||
LABEL version="0.76.1" | ||
LABEL version="0.76.5" | ||
|
||
ENV DEBIAN_FRONTEND=noninteractive | ||
ENV PATH="/usr/bin/:/usr/local/bin:/usr/lib:${PATH}" | ||
|
@@ -28,6 +28,7 @@ RUN set -x \ | |
cargo \ | ||
chromium \ | ||
tar \ | ||
jq \ | ||
chromium-driver \ | ||
&& apt-get clean \ | ||
&& rm -rf /var/lib/apt/lists/* \ | ||
|
@@ -39,7 +40,7 @@ RUN set -x \ | |
&& apt-get install -y firefox-esr | ||
|
||
# Install Geckodriver | ||
RUN GECKODRIVER_VERSION=$(curl -s https://api.github.com/repos/mozilla/geckodriver/releases/latest | grep 'tag_name' | cut -d\" -f4 | sed 's/v//') \ | ||
RUN GECKODRIVER_VERSION=$(curl -s https://api.github.com/repos/mozilla/geckodriver/releases/latest | jq -r '.tag_name' | sed 's/v//') \ | ||
&& ARCH=$(uname -m) \ | ||
&& if [ "$ARCH" = "aarch64" ]; then \ | ||
GECKODRIVER_URL="https://github.com/mozilla/geckodriver/releases/download/v${GECKODRIVER_VERSION}/geckodriver-v${GECKODRIVER_VERSION}-linux-aarch64.tar.gz"; \ | ||
|
@@ -111,4 +112,4 @@ COPY ./docker/backend/init.sh / | |
RUN chmod +x /entrypoint.sh /init.sh | ||
ENTRYPOINT ["/bin/bash", "/entrypoint.sh"] | ||
#ENTRYPOINT ["/entrypoint.sh"] | ||
CMD /init.sh | ||
CMD /init.sh |
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
FROM postgres:16 | ||
|
||
LABEL maintainer="[email protected]" | ||
LABEL version="0.76.1" | ||
LABEL version="0.76.5" | ||
|
||
ENV POSTGRES_DB "test" | ||
ENV POSTGRES_USER "augur" | ||
|
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
FROM rabbitmq:3.12-management-alpine | ||
|
||
LABEL maintainer="574/[email protected]" | ||
LABEL version="0.76.1" | ||
LABEL version="0.76.5" | ||
|
||
ARG RABBIT_MQ_DEFAULT_USER=augur | ||
ARG RABBIT_MQ_DEFAULT_PASSWORD=password123 | ||
|
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