Skip to content

Commit 01201af

Browse files
committed
Small fix or args order
1 parent da8547a commit 01201af

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ stop:
6363
################## IN PROGRESS: POSTGRES ##################
6464

6565
up-dev:
66-
docker-compose up -f $(DEV_DOCKER_COMPOSE) --build
66+
docker-compose -f $(DEV_DOCKER_COMPOSE) up --build
6767

6868
up-prod:
6969
docker-compose up --build

src/Base-Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,6 @@ RUN set -ex ;\
2222
openblas-dev@community \
2323
expat@community;
2424

25-
# https://gist.github.com/orenitamar/f29fb15db3b0d13178c1c4dd611adce2
26-
RUN apk add --update-cache gcc gfortran python python-dev py-pip wget freetype-dev libpng-dev expat postgresql-dev musl-dev
27-
2825
# Install pip packages to:
2926
# 1) deal with order dependencies
3027
# 2) save us a ton of time for future requirements.txt modifications
@@ -33,3 +30,6 @@ RUN pip3 install numpy scipy gensim
3330
RUN pip3 install Cython
3431
RUN pip3 install scikit-learn
3532
RUN pip3 install pandas
33+
34+
# https://gist.github.com/orenitamar/f29fb15db3b0d13178c1c4dd611adce2
35+
RUN apk add --update-cache bash gcc gfortran python python-dev py-pip wget freetype-dev libpng-dev expat postgresql-dev musl-dev

0 commit comments

Comments
 (0)