Skip to content

Commit

Permalink
add curl to the dockerfiles of the gui and http api
Browse files Browse the repository at this point in the history
  • Loading branch information
nattvara committed Apr 17, 2024
1 parent cb679c0 commit 21845c7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions gui/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ COPY --from=builder /app/.next ./.next
COPY --from=builder /app/node_modules ./node_modules
COPY --from=builder /app/package.json ./package.json

RUN apt-get update && apt-get install -y curl

EXPOSE 80

CMD ["yarn", "start", "-p", "80"]
1 change: 1 addition & 0 deletions http_api/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ COPY requirements.txt ./

RUN apt-get update && apt-get install -y \
build-essential \
curl \
libpq-dev

RUN pip install --no-cache-dir -r requirements.txt
Expand Down

0 comments on commit 21845c7

Please sign in to comment.