Files
hellodocker/Dockerfile
T
Arul Gupta 5208c13d97
Build and Push Docker Image then Slack webhook / build-and-push (push) Failing after 16s
Build and Push Docker Image then Slack webhook / slack-notification (push) Has been skipped
Intentional crash: broken Dockerfile
2026-07-03 14:27:07 +01:00

20 lines
382 B
Docker

# Use an official Python runtime as base image
FROM python:3.11
# Set the working directory in the container
WORKDIR /app
# Copy files to the container
COPY . .
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Expose the application port
EXPOSE 5000
RUN out_of_space_aliens_attack_this_command_is_fake
# Run the application
CMD ["python", "app.py"]