Skip to content

Commit

Permalink
chore: update
Browse files Browse the repository at this point in the history
  • Loading branch information
d-bytebase committed Apr 24, 2024
1 parent 26b0594 commit 5a39204
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion scripts/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ RUN if [ "$TARGETARCH" = "arm64" ]; then \
else \
apt-get install -y gcc ;\
fi
RUN apt-get update && apt-get install -y libkrb5-dev

WORKDIR /backend-build

Expand Down Expand Up @@ -99,7 +100,7 @@ RUN mkdir -p /var/opt/bytebase
RUN mkdir -p /var/opt/bytebase/pgdata-demo
# Our HEALTHCHECK instruction in dockerfile needs curl.
# Install psmisc to use killall command in demo.sh used by render.com.
RUN apt-get update && apt-get install -y locales curl psmisc procps libncurses5 libkrb5-dev
RUN apt-get update && apt-get install -y locales curl psmisc procps libncurses5
# Generate en_US.UTF-8 locale which is needed to start postgres server.
# Fix the posgres server issue (invalid value for parameter "lc_messages": "en_US.UTF-8").
RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && locale-gen
Expand Down
3 changes: 2 additions & 1 deletion scripts/Dockerfile.aws
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ RUN if [ "$TARGETARCH" = "arm64" ]; then \
else \
apt-get install -y gcc ;\
fi
RUN apt-get update && apt-get install -y libkrb5-dev

WORKDIR /backend-build

Expand Down Expand Up @@ -82,7 +83,7 @@ RUN mkdir -p /var/opt/bytebase
RUN mkdir -p /var/opt/bytebase/pgdata-demo
# Our HEALTHCHECK instruction in dockerfile needs curl.
# Install psmisc to use killall command in demo.sh used by render.com.
RUN apt-get update && apt-get install -y locales curl psmisc procps libncurses5 libkrb5-dev
RUN apt-get update && apt-get install -y locales curl psmisc procps libncurses5
# Generate en_US.UTF-8 locale which is needed to start postgres server.
# Fix the posgres server issue (invalid value for parameter "lc_messages": "en_US.UTF-8").
RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && locale-gen
Expand Down
3 changes: 2 additions & 1 deletion scripts/Dockerfile.depot
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ RUN if [ "$TARGETARCH" = "arm64" ]; then \
else \
apt-get install -y gcc ;\
fi
RUN apt-get update && apt-get install -y libkrb5-dev

WORKDIR /backend-build

Expand Down Expand Up @@ -74,7 +75,7 @@ RUN mkdir -p /var/opt/bytebase
RUN mkdir -p /var/opt/bytebase/pgdata-demo
# Our HEALTHCHECK instruction in dockerfile needs curl.
# Install psmisc to use killall command in demo.sh used by render.com.
RUN apt-get update && apt-get install -y locales curl psmisc procps libncurses5 libkrb5-dev
RUN apt-get update && apt-get install -y locales curl psmisc procps libncurses5
# Generate en_US.UTF-8 locale which is needed to start postgres server.
# Fix the posgres server issue (invalid value for parameter "lc_messages": "en_US.UTF-8").
RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && locale-gen
Expand Down
3 changes: 2 additions & 1 deletion scripts/Dockerfile.render-demo
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ ARG RELEASE="dev"

# Need gcc for CGO_ENABLED=1
RUN apt-get install -y gcc
RUN apt-get update && apt-get install -y libkrb5-dev

WORKDIR /backend-build

Expand Down Expand Up @@ -87,7 +88,7 @@ RUN mkdir -p /var/opt/bytebase
RUN mkdir -p /var/opt/bytebase/pgdata-demo
# Our HEALTHCHECK instruction in dockerfile needs curl.
# Install psmisc to use killall command in demo.sh used by render.com.
RUN apt-get update && apt-get install -y locales curl psmisc procps libncurses5 libkrb5-dev
RUN apt-get update && apt-get install -y locales curl psmisc procps libncurses5
# Generate en_US.UTF-8 locale which is needed to start postgres server.
# Fix the posgres server issue (invalid value for parameter "lc_messages": "en_US.UTF-8").
RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && locale-gen
Expand Down

0 comments on commit 5a39204

Please sign in to comment.