Skip to content

Commit

Permalink
Fix Dockerfile host and syntax (#1703)
Browse files Browse the repository at this point in the history
  • Loading branch information
J535D165 committed Mar 18, 2024
1 parent 6dec377 commit 829e02f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ RUN apt-get update \
&& apt-get install -y git npm build-essential libpq-dev\
&& pip3 install --upgrade pip setuptools \
&& python3 setup.py compile_assets \
&& pip3 install --user gunicorn psycopg2
&& pip3 install --user gunicorn psycopg2 \
&& pip3 install --user . \
&& pip3 install --user asreview-datatools asreview-insights asreview-makita asreview-wordcloud

Expand All @@ -22,7 +22,7 @@ WORKDIR /app

COPY --from=builder /root/.local /root/.local

ENV ASREVIEW_HOST=0.0.0.0
ENV ASREVIEW_LAB_HOST=0.0.0.0
ENV PATH=/root/.local/bin:$PATH
ENV ASREVIEW_PATH=/project_folder
EXPOSE 5000
Expand Down

0 comments on commit 829e02f

Please sign in to comment.