Remove docker stuff\

This commit is contained in:
Digital Studium 2025-05-24 10:09:30 +03:00
parent deb45ea14d
commit a1c4198a5e
2 changed files with 0 additions and 30 deletions

View File

@ -1,18 +0,0 @@
# Use an official lightweight Python image
FROM python:3.12-slim
# Set working directory
WORKDIR /app
# Install Python dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy application code
COPY main.py .
# Expose the port the app runs on
EXPOSE 5000
# Command to run the application
CMD ["python", "main.py", "--port", "5000"]

View File

@ -1,12 +0,0 @@
version: '3.8'
services:
certdecoder:
build:
context: .
dockerfile: Dockerfile
ports:
- "5001:5000"
environment:
- FLASK_ENV=production
restart: unless-stopped