From 3ab5d534390b17714e667cce8a29746feb46fc0a Mon Sep 17 00:00:00 2001 From: Untone Date: Thu, 23 Nov 2023 00:19:15 +0300 Subject: [PATCH] curl-fix --- Dockerfile | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9ce2d47d..65a65816 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,22 +1,12 @@ -# Use an official Python runtime as a parent image FROM python:slim - -# Set the working directory in the container to /app WORKDIR /app - -# Add metadata to the image to describe that the container is listening on port 80 -EXPOSE 80 - -# Copy the current directory contents into the container at /app COPY . /app -# Install any needed packages specified in pyproject.toml -RUN apt-get update && apt-get install -y gcc curl && \ +RUN apt-get update && apt-get install -y git gcc curl postgresql && \ curl -sSL https://install.python-poetry.org | python - && \ echo "export PATH=$PATH:/root/.local/bin" >> ~/.bashrc && \ . ~/.bashrc && \ poetry config virtualenvs.create false && \ poetry install --no-dev -# Run server.py when the container launches -CMD ["python", "server.py"] \ No newline at end of file +CMD ["python", "server.py"]