diff --git a/Dockerfile b/Dockerfile index 21a89d6..76e97c5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone ENV DEBIAN_FRONTEND=noninteractive -RUN apt-get update && apt-get install -y \ +RUN apt-get update && apt-get install -y \ clang \ curl \ git \ @@ -20,7 +20,6 @@ RUN apt-get update && apt-get install -y \ software-properties-common \ vim - RUN add-apt-repository ppa:deadsnakes/ppa -y RUN apt install python3.9-dev -y @@ -35,5 +34,11 @@ RUN python3.9 --version RUN update-alternatives --install /usr/bin/python python /usr/bin/python3.9 1 RUN update-alternatives --set python /usr/bin/python3.9 +# Create a specific directory for your project +RUN mkdir -p /app/alphacodium +# Set the working directory to the newly created directory +WORKDIR /app/alphacodium +# Copy the entire project directory into the image +COPY . .