15 lines
255 B
Docker
15 lines
255 B
Docker
FROM python:3.11-slim-buster
|
|
|
|
WORKDIR /rideaware_landing
|
|
|
|
COPY requirements.txt requirements.txt
|
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY . .
|
|
|
|
ENV FLASK_APP=server.py
|
|
|
|
EXPOSE 5000
|
|
|
|
CMD [ "python3", "-m", "flask", "run", "--host=0.0.0.0"]
|