Skip to content

Commit

Permalink
fix: server Dockerfile (#1381)
Browse files Browse the repository at this point in the history
  • Loading branch information
xyb authored Oct 16, 2024
1 parent c4418ab commit 5dd5c68
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,15 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential \
curl \
make \
libpq-dev \
gcc \
netcat-openbsd \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

# Install Poetry
RUN curl -sSL https://install.python-poetry.org | python3 -

RUN apt-get update && apt-get install netcat-openbsd -y

# Add Poetry to PATH
ENV PATH="/root/.local/bin:$PATH"

Expand All @@ -43,4 +44,4 @@ RUN chmod +x /startup.sh
# RUN dos2unix startup.sh

# Run the entrypoint script
CMD ["/startup.sh"]
CMD ["/startup.sh"]

0 comments on commit 5dd5c68

Please sign in to comment.