Skip to content

Commit

Permalink
Merge branch 'email_2fa' into staging
Browse files Browse the repository at this point in the history
  • Loading branch information
zephyranthes03 committed Jan 16, 2025
2 parents dbbd243 + f4704d0 commit 79d9edd
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 2 deletions.
33 changes: 32 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,37 @@ RUN set -xe; \
build-essential \
git ;

# RUN set -xe; \
# apt-get update && \
# apt-get install -y \
# wget \
# ca-certificates \
# build-essential \
# manpages-dev \
# libtool \
# autoconf \
# automake \
# gcc \
# g++ \
# libc6-dev\
# git \
# gawk \
# bison \
# python3 \
# python3-pip && \
# wget http://ftp.gnu.org/gnu/libc/glibc-2.34.tar.gz && \
# tar -xvzf glibc-2.34.tar.gz && \
# cd glibc-2.34 && \
# mkdir build && \
# cd build && \
# CFLAGS="-O2" CXXFLAGS="-O2" ../configure --prefix=/opt/glibc-2.34 && \
# make -j$(nproc) && \
# make install && \
# ldconfig /opt/glibc-2.34/lib


ENV LD_LIBRARY_PATH="/opt/glibc-2.34/lib:$LD_LIBRARY_PATH"

# Use the standard /usr/local/src destination
RUN mkdir -p /usr/local/src/bullhorn

Expand All @@ -28,7 +59,7 @@ RUN set -xe; \
mix deps.compile --all; \
mix release

FROM debian:11.6-slim as release
FROM debian:12-slim as release

RUN set -xe; \
apt-get update && \
Expand Down
2 changes: 1 addition & 1 deletion config/dev.exs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ config :bullhorn,
on_failure: :reject_and_requeue,
connection: [
username: "bullhorn",
password: System.get_env("RMQ_PASSWORD"),
password: System.get_env("RMQ_PASSWORD", "system76"),
host: System.get_env("RMQ_HOST", "localhost"),
port: System.get_env("RMQ_PORT", "5672")
]}

0 comments on commit 79d9edd

Please sign in to comment.