Skip to content

Commit

Permalink
Update dockerfile
Browse files Browse the repository at this point in the history
Signed-off-by: Bubbles The Dev <[email protected]>
  • Loading branch information
KernFerm authored Oct 26, 2024
1 parent 3e3fa69 commit c7224d4
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ WORKDIR /app
# Copy the project files from the current directory on host to /app in the container
COPY . /app

# Update package repository and install OpenSSL and other necessary libraries
RUN apk update && \
apk upgrade && \
apk add --no-cache openssl libssl1.1 libcrypto3 build-base

# Install dependencies if applicable
RUN pip install --no-cache-dir -r requirements.txt || true

Expand Down

0 comments on commit c7224d4

Please sign in to comment.