sigyllly commited on
Commit
1c9301c
·
verified ·
1 Parent(s): d9c409c

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +16 -24
Dockerfile CHANGED
@@ -4,47 +4,39 @@ FROM python:3.10-slim
4
  # Set the working directory
5
  WORKDIR /app
6
 
7
- # Install dependencies: wget, unzip, and Python pip
8
  RUN apt-get update && apt-get install -y \
9
  wget \
10
  apt-transport-https \
11
  gnupg2 \
12
- python3-pip \
13
- && rm -rf /var/lib/apt/lists/*
14
-
15
- # Install the .NET SDK (adjust version as necessary)
16
- RUN wget https://packages.microsoft.com/config/debian/$(lsb_release -rs)/packages-microsoft-prod.deb -O packages-microsoft-prod.deb \
17
  && dpkg -i packages-microsoft-prod.deb \
18
- && apt-get update \
19
- && apt-get install -y dotnet-sdk-7.0 \
 
20
  && rm packages-microsoft-prod.deb \
21
  && apt-get clean \
22
  && rm -rf /var/lib/apt/lists/*
23
 
24
- # Create a non-root user and set it as the user for the rest of the image
25
- RUN useradd -ms /bin/bash appuser
26
-
27
- # Ensure the /app directory is owned by the non-root user
28
- RUN chown -R appuser:appuser /app
29
-
30
- # Switch to the non-root user
31
- USER appuser
32
 
33
- # Create necessary directories and set permissions
34
- RUN mkdir -p /app/uploads && \
35
- chmod -R 777 /app/uploads
36
 
37
- # Set the PATH for the .NET SDK (if needed)
38
- ENV PATH="$PATH:/root/.dotnet/tools"
39
 
40
- # Copy the requirements file with the correct owner
41
- COPY --chown=appuser:appuser ./requirements.txt /app/requirements.txt
42
 
43
  # Install Python dependencies
44
  RUN pip3 install --no-cache-dir --upgrade -r /app/requirements.txt
45
 
46
  # Copy the Flask app files
47
- COPY --chown=appuser:appuser . .
48
 
49
  # Expose the port the app runs on
50
  EXPOSE 7860
 
4
  # Set the working directory
5
  WORKDIR /app
6
 
7
+ # Install dependencies: .NET SDK, wget, unzip, and Python pip
8
  RUN apt-get update && apt-get install -y \
9
  wget \
10
  apt-transport-https \
11
  gnupg2 \
12
+ unzip \
13
+ && wget https://packages.microsoft.com/config/debian/11/packages-microsoft-prod.deb -O packages-microsoft-prod.deb \
 
 
 
14
  && dpkg -i packages-microsoft-prod.deb \
15
+ && apt-get update && apt-get install -y \
16
+ dotnet-sdk-7.0 \
17
+ python3-pip \
18
  && rm packages-microsoft-prod.deb \
19
  && apt-get clean \
20
  && rm -rf /var/lib/apt/lists/*
21
 
22
+ # Ensure the /app directory is writable
23
+ RUN mkdir -p /app/uploads && chmod -R 777 /app/uploads
 
 
 
 
 
 
24
 
25
+ # Set the DOTNET_ROOT environment variable
26
+ ENV DOTNET_ROOT="/usr/share/dotnet"
27
+ ENV PATH="$PATH:$DOTNET_ROOT"
28
 
29
+ # Ensure csc is in the PATH
30
+ RUN echo $PATH && which csc
31
 
32
+ # Copy the requirements file
33
+ COPY ./requirements.txt /app/requirements.txt
34
 
35
  # Install Python dependencies
36
  RUN pip3 install --no-cache-dir --upgrade -r /app/requirements.txt
37
 
38
  # Copy the Flask app files
39
+ COPY . .
40
 
41
  # Expose the port the app runs on
42
  EXPOSE 7860