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
2 changes: 2 additions & 0 deletions services/gastown/container/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ FROM oven/bun:1-slim
# C++ stdlib: libc++1
# math: libgmp-dev
# timezone data: tzdata
# Java: default-jdk
RUN apt-get update && \
apt-get install -y --no-install-recommends \
git \
Expand Down Expand Up @@ -47,6 +48,7 @@ RUN apt-get update && \
libc++1 \
libgmp-dev \
tzdata \
default-jdk \
&& curl -fsSL https://deb.nodesource.com/setup_24.x | bash - \
&& apt-get install -y --no-install-recommends nodejs \
&& curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg \
Expand Down
2 changes: 2 additions & 0 deletions services/gastown/container/Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ FROM --platform=linux/arm64 oven/bun:1-slim
# C++ stdlib: libc++1
# math: libgmp-dev
# timezone data: tzdata
# Java: default-jdk
RUN apt-get update && \
apt-get install -y --no-install-recommends \
git \
Expand Down Expand Up @@ -47,6 +48,7 @@ RUN apt-get update && \
libc++1 \
libgmp-dev \
tzdata \
default-jdk \
&& curl -fsSL https://deb.nodesource.com/setup_24.x | bash - \
&& apt-get install -y --no-install-recommends nodejs \
&& curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg \
Expand Down