From 1cc8937867ff8e220fb7e9d1d359365d2360eda4 Mon Sep 17 00:00:00 2001 From: Nurkanat Date: Sat, 1 Jun 2024 16:42:56 +0500 Subject: [PATCH] update contents --- Dockerfile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/Dockerfile b/Dockerfile index e69de29..6767474 100644 --- a/Dockerfile +++ b/Dockerfile @@ -0,0 +1,14 @@ +# Use an official Python runtime as a parent image +FROM python:3.11-slim + +# Set the working directory in the container +WORKDIR /app + +# Copy the current directory contents into the container at /app +COPY . /app + +# Install any needed packages specified in requirements.txt +RUN pip install --no-cache-dir -r requirements.txt + +# Run app.py when the container launches +CMD ["python", "puff.py"] \ No newline at end of file