(feat): Init concept of coming soon landing page

This commit is contained in:
Blake Ridgway 2025-01-05 21:03:42 -06:00
parent 18bcafe29b
commit f8f8c773cc
9 changed files with 179 additions and 77 deletions

View file

@ -1,18 +1,15 @@
# Use an official Python runtime as a parent image
FROM python:3.10-slim
FROM python:3.11-slim-buster
# Set the working directory in the container
WORKDIR /app
WORKDIR /rideaware_landing
# Copy the requirements and application files
COPY requirements.txt requirements.txt
COPY . .
# Install Python dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Expose the port Flask runs on
COPY . .
ENV FLASK_APP=server.py
EXPOSE 5000
# Define the command to run the app
CMD ["python", "server.py"]
CMD [ "python3", "-m", "flask", "run", "--host=0.0.0.0"]