From 6a58d0f8f56b02892f6575c2c95ed5bc8e749a25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=88=85=E3=83=90=E3=83=BC=E3=83=B3=E3=82=BA=E2=88=85?= Date: Fri, 26 Jul 2024 19:28:17 +0530 Subject: [PATCH] Delete Dockerfile --- Dockerfile | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 2955227..0000000 --- a/Dockerfile +++ /dev/null @@ -1,28 +0,0 @@ -# Use an official Python runtime as a parent image -FROM python:3.9-slim - -# Set the working directory in the container -WORKDIR /app - -# Copy the current directory contents into the container at /app -COPY . /app - -# Check internet connectivity -RUN apt-get update && apt-get install -y curl && curl -I https://pypi.org -RUN apt-get update && apt-get install -y \ - build-essential \ - libssl-dev \ - libffi-dev \ - python3-dev \ - && rm -rf /var/lib/apt/lists/* - - - -# Make port 80 available to the world outside this container -EXPOSE 80 - -# Define environment variable -ENV NAME PanicPortal - -# Run app.py when the container launches -CMD ["python", "bot.py"]