Skip to content

Commit aca137e

Browse files
authored
fix: add vim to docker (#128)
* fix: add vim to docker * add --remove-orphans flag in make shell * fix: delete version from docker-compose.yaml
1 parent dec7a81 commit aca137e

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ENV DATA_DIR $DATA_DIR
1111
RUN curl -fsSL https://deb.nodesource.com/setup_22.x | bash - && \
1212
apt-get update && \
1313
apt-get install -y python3-pip pipenv \
14-
gcc cmake libgeos-dev git \
14+
gcc cmake libgeos-dev git vim \
1515
ca-certificates curl gnupg nodejs && \
1616
apt-get clean && \
1717
rm -rf /var/lib/apt/lists/* && \

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ shell:
1313
@echo "------------------------------------------------------------------"
1414
@echo "Shelling in dev mode"
1515
@echo "------------------------------------------------------------------"
16-
docker compose -f docker-compose.yaml run --entrypoint /bin/bash cbsurge
16+
docker compose -f docker-compose.yaml run --remove-orphans --entrypoint /bin/bash cbsurge
1717

1818

1919
test:

docker-compose.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
version: '3'
21
services:
32
cbsurge:
43
build:

0 commit comments

Comments
 (0)