From 200116f6f40c5032647de6eb55a9376444f47338 Mon Sep 17 00:00:00 2001 From: Anton Kamalov Date: Thu, 7 Nov 2024 10:50:14 +0300 Subject: [PATCH] =?UTF-8?q?=D0=92=D1=8B=D0=B4=D0=B5=D0=BB=D0=B5=D0=BD?= =?UTF-8?q?=D0=B8=D0=B5=20Docker=20=D0=B2=20=D0=BE=D1=82=D0=B4=D0=B5=D0=BB?= =?UTF-8?q?=D1=8C=D0=BD=D1=83=D1=8E=20=D0=B2=D0=B5=D1=82=D0=B2=D1=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 18 ------------------ build.sh | 4 ---- 2 files changed, 22 deletions(-) delete mode 100644 Dockerfile delete mode 100755 build.sh diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 956acce..0000000 --- a/Dockerfile +++ /dev/null @@ -1,18 +0,0 @@ -# Use the official Python image as a base -FROM python:3.9.20-alpine3.19 - -# Set the working directory inside the container -WORKDIR /app - -# Copy the contents of the 'App' folder to the working directory -COPY App/ /app - -# Copy the requirements file to the working directory -COPY requirements.txt /app - -# Install the dependencies from the requirements file -RUN pip install --no-cache-dir -r requirements.txt - -EXPOSE 5001 -# Command to run the application -CMD ["python", "app.py"] diff --git a/build.sh b/build.sh deleted file mode 100755 index 5fe7bd9..0000000 --- a/build.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/bash - -docker build -t tsettaro/kursovaya-ris:latest . -docker push tsettaro/kursovaya-ris:latest