Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
itsumura-h committed Oct 11, 2024
1 parent 0f2c336 commit 2066776
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 0 deletions.
2 changes: 2 additions & 0 deletions compose.test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ services:
dockerfile: ./docker/ubuntu/test.Dockerfile
args:
NIM_VERSION: 1.6.20
tty: true
volumes:
- .:/root/project
depends_on:
Expand All @@ -19,6 +20,7 @@ services:
dockerfile: ./docker/ubuntu/test.Dockerfile
args:
NIM_VERSION: 2.2.0
tty: true
volumes:
- .:/root/project
depends_on:
Expand Down
6 changes: 6 additions & 0 deletions docker/ubuntu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,19 @@ RUN apt install -y \
gcc \
xz-utils \
ca-certificates \
libpcre3-dev \
vim \
curl \
git \
sqlite3 \
libpq-dev \
libmariadb-dev

# gcc... for Nim
# xz-utils... for unzip tar.xz
# ca-certificates... for https
# libpcre3-dev... for nim regex

# Nim
ARG NIM_VERSION="2.0.0"
WORKDIR /root
Expand Down
6 changes: 6 additions & 0 deletions docker/ubuntu/test.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,18 @@ RUN apt install -y \
gcc \
xz-utils \
ca-certificates \
libpcre3-dev \
curl \
git \
sqlite3 \
libpq-dev \
libmariadb-dev

# gcc... for Nim
# xz-utils... for unzip tar.xz
# ca-certificates... for https
# libpcre3-dev... for nim regex

# Nim
ARG NIM_VERSION="2.0.0"
WORKDIR /root
Expand Down

0 comments on commit 2066776

Please sign in to comment.