-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove pushing of the image and used slim instead of alpine
- Loading branch information
1 parent
6fee6ed
commit 1f6da96
Showing
2 changed files
with
7 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,17 @@ | ||
FROM python:3.11-alpine | ||
FROM python:3.11-slim | ||
|
||
WORKDIR /usr/src/app | ||
|
||
# Install build tools and necessary libraries on Alpine | ||
RUN apk add --no-cache \ | ||
build-base \ | ||
libssl3 \ | ||
openssl-dev | ||
RUN apt-get update && apt-get install -y --no-install-recommends \ | ||
build-essential \ | ||
libssl-dev \ | ||
&& apt-get clean \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
# Copy and install Python dependencies | ||
COPY ../requirements.txt ./ | ||
|
||
RUN pip install --no-cache-dir -r requirements.txt | ||
|
||
# Copy the rest of the application | ||
COPY .. . | ||
|
||
# Define the entry point | ||
ENTRYPOINT ["python3", "-m", "WrapImage.nifti_wrapper"] |