Skip to content

Commit

Permalink
Stay with requirement install only in Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
broeder-j committed Nov 17, 2021
1 parent ddab716 commit f62617c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ COPY pyproject.toml ./

COPY /fuji_server ./fuji_server

RUN pip3 install .
#COPY requirements.txt ./
#RUN pip3 install .
COPY requirements.txt ./

#RUN pip3 install --no-cache-dir -r requirements.txt
RUN pip3 install --no-cache-dir -r requirements.txt

# Docker doesn't like 'localhost'
RUN sed -i "s|localhost|0.0.0.0 |g" ./fuji_server/config/server.ini
Expand Down

0 comments on commit f62617c

Please sign in to comment.