File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed
Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ FROM gv-base AS dev
2929
3030# install dev and non-dev dependencies:
3131RUN curl -sSL https://install.python-poetry.org | python3 - --version 1.8.3
32- RUN python -m venv .venv
32+ RUN poetry config virtualenvs.create false
3333RUN poetry install --without release
3434
3535COPY . /code/
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ services:
3636 celeryworker :
3737 build :
3838 context : .
39- target : gv-deploy
39+ target : dev
4040 restart : unless-stopped
4141 command : python -m celery --app app worker --uid daemon -l info
4242 depends_on :
@@ -50,7 +50,7 @@ services:
5050 celerybeat :
5151 build :
5252 context : .
53- target : gv-deploy
53+ target : dev
5454 restart : unless-stopped
5555 command : python -m celery --app app beat --uid daemon -l info
5656 depends_on :
@@ -77,8 +77,6 @@ services:
7777 - rabbitmq_vol:/var/lib/rabbitmq
7878 stdin_open : true
7979
80-
81-
8280volumes :
8381 postgres_data_vol :
8482 external : false
You can’t perform that action at this time.
0 commit comments