diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..6f6e526 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,17 @@ +# Use an official Python runtime as the base image +FROM python:3.9-slim + +# Set the working directory inside the container +WORKDIR /app + +# Copy the current directory contents into the container at /app +COPY . /app + +# Install the required dependencies +RUN pip install --no-cache-dir Flask + +# Expose port 5000 (the default Flask port) +EXPOSE 5000 + +# Set the command to run the application when the container starts +CMD ["python", "app.py"] diff --git a/s3samuel b/s3samuel new file mode 100644 index 0000000..261ee52 --- /dev/null +++ b/s3samuel @@ -0,0 +1,2 @@ +Hello, +s3samuel is proud of the way instructors Eric and Tia are transmitting devops knowledges.