Skip to content

Commit

Permalink
added python to dockerfile's second stage
Browse files Browse the repository at this point in the history
  • Loading branch information
oceanbluesky committed Dec 13, 2024
1 parent 4148e76 commit b1e3aac
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,10 @@ WORKDIR /app
# Copy build output from the builder stage
COPY --from=builder /app/dist /app/dist

# Install a lightweight HTTP server
# Install Python3 and a lightweight HTTP server
RUN apt-get update && apt-get install -y \
python3 \
python3-pip \
curl \
&& apt-get clean && rm -rf /var/lib/apt/lists/*

Expand Down

0 comments on commit b1e3aac

Please sign in to comment.