Skip to content

Commit

Permalink
Update dockerfile for dev-ing (#1817)
Browse files Browse the repository at this point in the history
  • Loading branch information
fuziontech authored Oct 7, 2020
1 parent 34ad57c commit d27b836
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion dev.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ COPY requirements.txt /code/
RUN pip install $(grep -ivE "psycopg2" requirements.txt) --compile\
&& pip install psycopg2-binary

# install dev dependencies
# install dev dependencies
RUN mkdir /code/requirements/
COPY requirements/dev.txt /code/requirements/
RUN pip install -r requirements/dev.txt --compile

COPY package.json /code/
Expand Down

0 comments on commit d27b836

Please sign in to comment.